- 积分
- 40165
- 好友
- 记录
- 主题
- 帖子
- 听众
- 收听
|
发表于 2013-5-12 14:57:09
|
显示全部楼层
[code=csharp]HttpHelper http = new HttpHelper();
HttpItem item = new HttpItem()
{
URL = "http://test.itrac.com.tw/w/system/exeLogin.wsj?accName=wbdacTest&passwd=7f8481b643e955b3d497284a9aef37c9",//URL 必需项
Method = "GET",//URL 可选项 默认为Get
UserAgent = "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko/20100101 Firefox/18.0",//用户的浏览器类型,版本,操作系统 可选项有默认值
Accept = "text/html, application/xhtml+xml, */*",// 可选项有默认值
ContentType = "application/x-www-form-urlencoded",//返回类型 可选项有默认值
Referer ="http://test.itrac.com.tw/w/system/login ",//来源URL 可选项
};
HttpResult result = http.GetHtml(item);
string html = result.Html;
string cookie = result.Cookie;[/code]
上面代码就可以直接访问,你可以在线进行测试
如下图片
返回OK不就是成功了吗?
我试了可以的
你去测试下吧,在线测试工具地址是:http://tool.sufeinet.com
|
|