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.
<form name="myform" method="get" action="test.asp">
<input type="text" name="textfield">
<input type="submit" name="Submit" value="Submit">
</form>
after submitting this form the url would appear like:
[URL unfurl="true"]http://some_domain_name.com/test.asp?textfield=SOMEVALUE&Submit=Submit[/URL]
You would then use the Request.QueryString("textfield") method to retrieve the value.
The POST form method will post to the page and values are not apparent in the URL, Example:
<form name="myform" method="post" action="test.asp">
<input type="text" name="textfield">
<input type="submit" name="Submit" value="Submit">
</form>
after submitting this form the url would appear without the
querystrings:
[URL unfurl="true"]http://some_domain_name.com/test.asp[/URL]
You would then use the Request.Form("textfield") method to retrieve the value.