News:

Build a stunning handcrafted website with IT Acumens

Main Menu

Forms and User Input

Started by sukishan, Aug 20, 2009, 12:08 PM

Previous topic - Next topic

sukishan

Forms and User Input
Request.QueryString is used to collect values in a form with method="get". Information sent from a form with the GET method is visible to everyone (it will be displayed in the browser's address bar) and has limits on the amount of information to send.

Request.Form is used to collect values in a form with method="post". Information sent from a form with the POST method is invisible to others and has no limits on the amount of information to send.
A good beginning makes a good ending