When do Request.Params and Request.Form differ?

前端 未结 3 1210
野性不改
野性不改 2020-12-29 19:56

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

3条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2020-12-29 20:14

    Request.Form only includes variables posted through a form, while Request.Params includes both posted form variables and get variables specified as URL parameters.

提交回复
热议问题