Definitions for "GET Method"
The GET method is a method used for submitting data on an HTML form. When a form is submitted by using the GET method, the form data is appended to the URL. When the server receives the submission, ASP pulls this extra data off the URL and puts it into the Request.QueryString collection.
a public method which is used to return the value of a private instance or class field
The get method of submitting form data is accomplished via the environmental variable QUERY_STRING. This is not a secure way to transmit form data since the form data is appended to a string of characters visible in your browser's `location' window, such as, scriptname.cgi?somedata=example&homephone=123-1234.