home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Using Visual Basic 5 (Platinum Edition)
/
vb5.iso
/
Code
/
ch37
/
code_sam
/
sample.asp
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1997-06-26
|
246 b
|
17 lines
<%
Response.Write "<HTML>"
Response.Write "<HEAD><TITLE>Example Page</TITLE></HEAD>"
Response.Write "<BODY>"
For j = 1 to 10
Response.Write "<P>Line: " & j & "</P>"
Next
Response.Write "</BODY>"
Response.Write "</HTML>"
%>