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
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
6:43 pm on Oct 25, 2005 (gmt 0)
doesnt really matter.. we can currently create anything alpha-numeric
fiu88
5:25 am on Oct 28, 2005 (gmt 0)
ttt
Easy_Coder
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