Difference between Request.Form and Request.QueryString?

Viewed 53622

Can some tell me the exact difference between Request.Form and Request.QueryString?

I know one difference, like

If the HTTP request method is POST, the user submitted data is in the Request.Form() collection

If the HTTP request method is GET, then user submitted data is in the Request.QueryString() collection

any other difference? and Any example would be greatly appreciated.

6 Answers
Related