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

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