home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Using Visual Basic 5 (Platinum Edition)
/
vb5.iso
/
Code
/
ch38
/
end.asp
< prev
next >
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-09-21
|
184 b
|
13 lines
<HTML>
<HEAD><TITLE>Stopping an ASP</TITLE></HEAD>
<BODY>
<% For j = 1 to 200 %>
<P><%=j%></P>
<%
If j > 40 Then
Response.End
End If
Next
%>
</BODY>
</HTML>