The Form collection property contains the values of the <FORM> elements posted to a form using the POST method.
The FORM collection property contains, and allows you to retrieve, the values of the <FORM> elements posted
to a request form using the POST method.
You can iterate through a collection using a For Each item in ... Next loop.
There is one mandatory argumen and one optional argument.
-------------------File1.asp------------------------
<HTML>
<HEAD>
</HEAD>
<BODY>
<form action="File2.asp" method="POST">
Name:<input type="Text" name="Name" maxlength="20"><br>
Company:<input type="Text" name="Company" maxlength="20"><br>
Position:<input type="Text" name="Position" maxlength="20"><br>
Address:<textarea name="Address" rows="3"></textarea><br>
Phone:<input type="Text" name="Phone" maxlength="20"><br>
<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") %>.<br>
</BODY>
</HTML>
Jane Doe works for ISSI at address 5609 Kington Pike Knoville, TN as a Web Designer.