home *** CD-ROM | disk | FTP | other *** search
/ Using Visual Basic 5 (Platinum Edition) / vb5.iso / Code / ch38 / text.asp < prev    next >
Encoding:
Text File  |  1997-09-21  |  165 b   |  6 lines

  1. <%@ LANGUAGE="VBSCRIPT"%>
  2. <%Response.ContentType="text/plain"
  3. For j = 1 to 100
  4.      Response.Write j & "," & (j * 2) & "," & (j * 3) & chr(13) & chr(10)
  5. Next
  6. %>