home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / iis4_07.cab / QueryString_VBScript.asp < prev    next >
Text File  |  1997-10-25  |  877b  |  39 lines

  1. <% @Language=VBScript    %>
  2. <% Option Explicit        %>
  3.  
  4.  
  5. <HTML>
  6.     <HEAD>
  7.         <TITLE>Form Posting (Get Method with QueryString)</TITLE>
  8.     </HEAD>
  9.  
  10.     <BODY bgcolor="white" topmargin="10" leftmargin="10">
  11.         
  12.         <!-- Display Header -->
  13.  
  14.         <font size="4" face="Arial, Helvetica">
  15.         <b>Form Posting (Get Method with QueryString)</b></font> 
  16.  
  17.         <br><hr><p>
  18.  
  19.         This page will take the information entered in the form
  20.         fields, and use the GET method to send the data to an
  21.         ASP page.
  22.  
  23.         <FORM Name=Form1 METHOD=GET ACTION="QueryString_VBScript.asp">
  24.         
  25.             First Name: <Input Type=Text Name=fname><p>
  26.             Last Name: <Input Type=Text Name=lname><p>
  27.             
  28.             <INPUT Type=Submit Value="Submit">
  29.             
  30.         </FORM>
  31.  
  32.  
  33.         <hr>
  34.  
  35.         <% Response.Write(Request.QueryString("fname"))%> <br>
  36.         <% Response.Write(Request.QueryString("lname"))%>
  37.     </BODY>
  38. </HTML>
  39.