the statement <%= something%> is an equivalent to the statement <%Response.Write(something)%> and is used to write something onto the page. So, you should use the normal procedure like:
<%
Dim rndnum
Randomize
rndnum = Int(Rnd()*(99999999-10000000+1)+10000000) ' generates random 8-digit number in a range between 10000000 and 99999999
%>
<P>
<% =rndnum%></P>
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.