Forms Introduction by Charles Carroll

Forms are the primary way that a user feeds information into ASP. A form is a web page that contains tags that cause the browser to show fields that the user can fill in.

Form with GET

<form action="x.asp" name="whatever" method=get>
   ....

   <input type=submit>
   <input type=reset>
</form>

Form with POST

<form action="x.asp" name="whatever" method="post">
   ....

   <input type=submit>
   <input type=reset>
</form>

Tips:

Tip #1: If using response.redirect to simulate a GET don't forget to encode:
/learn/encode.asp

Tip #2: A  text link can be used intead of a button to post above form would look like this:
<a href="javascript:document.yourformname.submit();">
send data</a>