I am a vb programmer trying to gain a foothold in working with ASP. Could someone send me a brief sample of code using vb script that I might use as a referance as I am getting started?
<%
' Start the loop telling it to loop from 1 to 5 incrementing
' I by one (which is the default) on each pass.
'
' ie. this would have done the same thing:
' For I = 1 To 5
For I = 1 To 5 Step 1
' Output our HTML and text using the value of I as
' the FONT TAG's SIZE attribute.
%>
<FONT SIZE="<%= I %>">Hello World</FONT><BR>
<%
Next ' Bounce back to the top of the loop
%>
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.