| Script-coding needed
|
fiu88

msg:946724 | 5:22 am on Oct 19, 2005 (gmt 0) | We have an asp based site... I need code or a script that can generate One Time use coupon codes/// Any help or ideas would be greatly appreciated...If you ahev a solution, let me know how it works and what you need for compensation///
|
Krapulator

msg:946725 | 3:59 am on Oct 25, 2005 (gmt 0) | What is the desired format of your coupon codes? Eg Numeric, alphanumeric, alpha only? Length?
|
fiu88

msg:946726 | 6:43 pm on Oct 25, 2005 (gmt 0) | doesnt really matter.. we can currently create anything alpha-numeric
|
fiu88

msg:946727 | 5:25 am on Oct 28, 2005 (gmt 0) | ttt
|
Easy_Coder

msg:946728 | 9:07 am on Oct 28, 2005 (gmt 0) | Response.Write "GUID = " & CreateGUID() Function CreateGUID() Randomize Timer Dim tmpCounter,tmpGUID Const strValid = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ" For tmpCounter = 1 To 20 tmpGUID = tmpGUID & Mid(strValid, Int(Rnd(1) * Len(strValid)) + 1, 1) Next CreateGUID = tmpGUID End Function
|
aspdaddy

msg:946729 | 1:41 pm on Oct 28, 2005 (gmt 0) | myGUID = createobject("scriptlet.typelib").guid myGUID= replace(myGUID, "}", "") myGUID= replace(myGUID, "{", "") myGUID= replace(myGUID, "-", "") myGUID= replace(myGUID, "'", "") Response.write myGUID
|
|
|