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

  1. <% @Language=JScript    %>
  2.  
  3. <HTML>
  4.     <HEAD>
  5.         <TITLE>Form Posting</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</b></font><br>   
  14.  
  15.         <hr><p>
  16.  
  17.         This page will take the information entered in
  18.         the form fields, and use the POST method to
  19.         send the data to an ASP page.
  20.  
  21.         <FORM Name=Form1 METHOD=POST ACTION="Form_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.Form("fname"))%> <br>
  33.         <% Response.Write(Request.Form("lname"))%>
  34.     </BODY>
  35. </HTML>
  36.