FORM_JSCRIPT.ASP
<% @Language=JScript%> 
 
<HTML> 
    <HEAD> 
        <TITLE>Form Posting</TITLE> 
    </HEAD> 
 
    <BODY bgcolor="white" topmargin="10" leftmargin="10"> 
         
<!-- Display Header --> 
 
<font size="4" face="Arial, Helvetica"> 
<b>Form Posting</b></font><br>    
 
<hr><p> 
 
This page will take the information entered in 
the form fields, and use the POST method to 
send the data to an ASP page. 
 
<FORM Name=Form1 METHOD=POST ACTION="Form_JScript.asp"> 
 
First Name: <Input Type=Text Name=fname><p> 
Last Name: <Input Type=Text Name=lname><p> 
 
<INPUT Type=Submit Value="Submit"> 
 
</FORM> 
 
<hr> 
 
<% Response.Write(Request.Form("fname"))%> <br> 
<% Response.Write(Request.Form("lname"))%> 
</BODY> 
</HTML>