Difference between Request.Form and Request.QueryString?

前端 未结 6 534
隐瞒了意图╮
隐瞒了意图╮ 2021-02-02 17:02

Can some tell me the exact difference between Request.Form and Request.QueryString?

I know one difference, like

If th

6条回答
  •  忘了有多久
    2021-02-02 17:08

    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.

提交回复
热议问题