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

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