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.