I recently encountered a problem where a value was null if accessed with Request.Form but fine if retrieved with Request.Params. What are the differences between these meth
The reason was that the value I was retrieving was from a form element, but the submit was done through a link + JQuery, not through a form button submit.