问题描述
- C# post一般处理程序网页 POST为空
-
C# post一般处理程序网页 网页无法获得POST的数据,这是为啥呢?程序端:
HttpHelper http = new HttpHelper();
//创建Httphelper参数对象
HttpItem item = new HttpItem()
{
URL = "http://localhost:29291/Handler1.ashx",//URL 必需项Method = "post",//URL 可选项 默认为Get
ContentType = "application/x-www-form-urlencoded",//返回类型 可选项有默认值
Postdata =“111111”,//Post要发送的数据
};
//请求的返回值对象
HttpResult result = http.GetHtml(item);网页:
string PostStr = context.Request["PostData"]; if (PostStr != null) { context.Response.Write(PostStr ); } else { context.Response.Write("kong"); }
解决方案
c# 抓取网页验证码并post数据
C#post提交数据与网页交互
C#请求网页(Get、Post)
解决方案二:
不懂你HttpHelper怎么实现的,你指定了件名称没有?Postdata =“Postdata=111111”
时间: 2024-10-02 04:59:16