<%
Function MyRandom( couponLength, couponString )
Const defaultString = "ABCDEFGHIJKLMNOPQRSTUVXYZ0123456789"
Dim nCount, sRet, nNumber, nLengthRandomize 'init random
If couponString = "" Then
couponString = defaultString
End IfnLength = Len( couponString )
For nCount = 1 To couponLength
nNumber = Int((nLength * Rnd) + 1)
sRet = sRet & Mid( couponString, nNumber, 1 )
Next'리턴값
MyRandom = sRetEnd Function
%>
<%
Response.Write "쿠폰넘버: " & MyRandom( 15, "" )
%>
[출처] [ASP] 쿠폰번호 생성|작성자 가능성
'WEB TIP > ASP' 카테고리의 다른 글
Provider error '8007000e' 해결방법 (2003 서버) (0) | 2008.07.09 |
---|---|
PAGE ERROR (0) | 2008.06.23 |
adVarChar 크기 (0) | 2008.02.19 |
블로그 트랙백의 구현 (0) | 2007.12.04 |
블로그 XML RSS 리더의 구현 (0) | 2007.12.04 |