View Single Post
Old 12-02-2005, 03:45 PM   #3 (permalink)
office politics
office politics's Avatar
 
It's all just 1s and 0s

Join Date: Jan 2004

Location: in the lab

Posts: 4,425

office politics will become famous soon enough

Default

Code:
-------------------File1.asp------------------------
<HTML>
<HEAD>
</HEAD>
<BODY>
<form action="File2.asp" method="POST">
Name:<input type="Text" name="Name" maxlength="20">

Company:<input type="Text" name="Company" maxlength="20">

Position:<input type="Text" name="Position" maxlength="20">

Address:<textarea name="Address" rows="3"></textarea>

Phone:<input type="Text" name="Phone" maxlength="20">

<input type="Submit" name="Submit" value="Submit">
</form>
</BODY>
</HTML>
-------------------File2.asp------------------------
<HTML>
<HEAD>
</HEAD>
<BODY>
<% Response.Write Request.Form("Name")%> works for 
<% Response.Write Request.Form("Company") %> at address 
<% Response.Write Request.Form("Address") %> as a 
<% Response.Write Request.Form("Position") %>.

</BODY>
</HTML>

Output: 
Jane Doe works for ISSI at address 5609 Kington Pike Knoville, TN as a Web Designer.

office politics is offline