0

我有一个接收 HTTP POST 的 HTTP 处理程序。带有标头的 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"];

但这没有用。

4

1 回答 1

0

我认为你应该使用:

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

取自此处的示例:http ://forums.asp.net/t/1190337.aspx和此处如何将数据发送到 httphandler

于 2013-06-21T19:26:09.823 回答