Can some tell me the exact difference between Request.Form and Request.QueryString?
Request.Form
Request.QueryString
I know one difference, like
If th
Request.Form - means you are wanting to retrieve the values for the form that was posted.
Request.QueryString - means you are wanting to retrieve values that have been passed on the querystring.