如何处理HTTP POST?

时间:2013-06-21 19:05:23

标签: c# asp.net http-post

我有一个HTTP处理程序,它接收HTTP POST。 带标题的HTTP POST消息是 -

POST /ibe/example.com HTTP/1.1
Content-Length: 445
Content-Type: application/x-www-form-urlencoded; charset=UTF-8
Accept: */*
Host: 202.177.46.142

charset=UTF-8&param1=val1&param2=val2

我的代码中的处理程序是 -

            var V1 = context.Request["param1"];
            var V2 = context.Request["param2"];

但这不起作用。

1 个答案:

答案 0 :(得分:0)

我认为你应该使用:

var V1 = context.Request.Param["param1"];
var V2 = context.Request.Param["param2"];

取自此示例:http://forums.asp.net/t/1190337.aspxHow to send data to httphandler