我有一个接收 HTTP POST 的 HTTP 处理程序。带有标头的 HTTP POST 消息是 -
POST /ibe/example.ashx HTTP/1.1
Content-Length: 41
Content-Type: application/x-www-form-urlencoded; text/html; charset=GBK
Host: 202.177.46.142
User-Agent: Mozilla/4.0
param1=value1¶m2=value2¶m3=value3
我的代码中的处理程序是 -
var V1 = context.Request["param1"];
var V2 = context.Request["param2"];
但是返回的值是null