Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[b]Form 1 Named [u]MyForm[/u]:[/b]
<form name="[u]MyForm[/u]" [COLOR=blue][b]action="Page_Receiving_MyForm.asp"[/b][/color]
method="post">
Username:
<input type="text" name="YourName">
<input type="submit" value="Submit">
</form>
[b]Page 2 [u]Page_Receiving_MyForm.asp[/u]:[/b]
<html>
The name you typed in the form was = Request.form("YourName")
'inside the form
<input type="hidden" name="YourValue" value="<%=YourVariableHere%>">
Request.Form("YourValue")
<form name="MyForm" action="Page2.asp?YourValue=<%=Server.URLEncode(YourVariableHere)%>"
method="post">
Request.Querystring("YourValue")