home *** CD-ROM | disk | FTP | other *** search
/ Using Visual Basic 5 (Platinum Edition) / vb5.iso / Code / ch38 / qsexample.asp < prev    next >
Encoding:
Text File  |  1997-07-01  |  215 b   |  8 lines

  1. <%@ LANGUAGE="VBSCRIPT"%>
  2. <HTML>
  3. <HEAD><TITLE>Query String Example</TITLE></HEAD>
  4. <BODY>
  5. <H2>The ID is <%=Request.QueryString("ID")%></H2>
  6. <H2>The Code is <%=Request.QueryString("CODE")%></H2>
  7. </BODY>
  8. </HTML>