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 >
Wrap
Text File
|
1997-10-25
|
770b
|
36 lines
<% @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>