【HttpHelper万能框架教程】- POST字节数组
导读部分
1.【HttpHelper万能框架】教程目录贴 http://www.sufeinet.com/thread-9989-1-1.html
教程部分
POST请请求是使用Http协议与请求的URL进行连接,然后再写入数据,最后关闭连接的过程。
下面看下怎么样使用我的框架来完成这一次发送和接收数据第一步引入命名空间
[C#] 纯文本查看 复制代码 using CsharpHttpHelper;
第二部在页面下写相关代码
[C#] 纯文本查看 复制代码
//要Post的数据
string postdate = "a=123&c=456&d=789";
//将Post数据转为字节数组
byte[] bytedate = System.Text.Encoding.UTF8.GetBytes(postdate);
//创建Httphelper对象
HttpHelper http = new HttpHelper();
//创建Httphelper参数对象
HttpItem item = new HttpItem()
{
URL = "http://www.sufeinet.com",//URL 必需项
Method = "post",//URL 可选项 默认为Get
ContentType = "application/x-www-form-urlencoded",//返回类型 可选项有默认值
PostDataType = PostDataType.Byte,
PostdataByte = bytedate
};
//请求的返回值对象
HttpResult result = http.GetHtml(item);
//获取请请求的Html
string html = result.Html;
//获取请求的Cookie
string cookie = result.Cookie;
|