Question
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 methods that could cause this?
Answer
Request.Form only includes variables posted through a form, while Request.Params includes both posted form variables and get variables specified as URL parameters.
< br > via < a class="StackLink" href=" http://stackoverflow.com/questions/5706/" >When do Request.Params and Request.Form differ?< /a>
0 comments:
Post a Comment