ASP FORMS and INPUTS
Commands for information retrieval from forms:
1. Request.QueryString
2. Request.Form
Difference between GET and POST methods:
GET:
1. Limited data can be sent upto 255 characters.
2. Command used is Request.QueryString
3. Data is visible to the users as it is passed using querystring of the url.
POST:
1. Umlimited data can be sent.
2. Command used is Request.Form
3. Data is not visible to the users as it is passed using form elements.
No comments:
Post a Comment