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.
In
Request.Formthe data is posted in thehttprequest body whereas inQueryStringdata is sent through url.