Getting a POST variable

后端 未结 3 613
北恋
北恋 2020-11-30 03:49

I am using C# with ASP.NET.

How do I check if a parameter has been received as a POST variable?

I need to do different actions if the parameter has been sent

3条回答
  •  醉梦人生
    2020-11-30 04:14

    Use this for GET values:

    Request.QueryString["key"]
    

    And this for POST values

    Request.Form["key"]
    

    Also, this will work if you don't care whether it comes from GET or POST, or the HttpContext.Items collection:

    Request["key"]
    

    Another thing to note (if you need it) is you can check the type of request by using:

    Request.RequestType
    

    Which will be the verb used to access the page (usually GET or POST). Request.IsPostBack will usually work to check this, but only if the POST request includes the hidden fields added to the page by the ASP.NET framework.

提交回复
热议问题