- 积分
- 40165
- 好友
- 记录
- 主题
- 帖子
- 听众
- 收听
|
发表于 2013-8-21 11:38:47
|
显示全部楼层
[code=csharp] HttpHelper http = new HttpHelper();
HttpItem item = new HttpItem()
{
URL = "http://port.shippingchina.com/tide/index/index.html",//URL 必需项
Method = "post",//URL 可选项 默认为Get
IsToLower = false,//得到的HTML代码是否转成小写 可选项默认转小写
Cookie = "",//字符串Cookie 可选项
Referer ="",//来源URL 可选项
Postdata = "port_namec=%E7%A7%A6%E7%9A%87%E5%B2%9B&month=2&day=2&Submit=%E6%90%9C%E7%B4%A2",//Post数据 可选项GET时不需要写
Timeout = 100000,//连接超时时间 可选项默认为100000
ReadWriteTimeout = 30000,//写入Post数据超时时间 可选项默认为30000
UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)",//用户的浏览器类型,版本,操作系统 可选项有默认值
ContentType = "text/html",//返回类型 可选项有默认值
Allowautoredirect = false,//是否根据301跳转 可选项
};
HttpResult result = http.GetHtml(item);
string html = result.Html;
string cookie = result.Cookie;
[/code]
Postdata = "port_namec=%E7%A7%A6%E7%9A%87%E5%B2%9B&month=2&day=2&Submit=%E6%90%9C%E7%B4%A2"
这些参数你自己组织一下就行了。
|
|