Development/ASP

[ASP] Random 함수

연탄집게 2011. 9. 19. 10:09
<%
randomize()
num = int((5)*Rnd()+1) '최소 1 ~ 최대 5
response.Write num
%>