导读部分
【HttpHelper万能框架】教程目录贴 http://www.sufeinet.com/thread-9989-1-1.html
【HttpHelper万能框架】源码购买帖 http://www.sufeinet.com/thread-9926-1-1.html
教程部分
方法很简单如下[C#] 纯文本查看 复制代码 //创建Httphelper对象
HttpHelper http = new HttpHelper();
//创建Httphelper参数对象
HttpItem item = new HttpItem()
{
URL = "http://sufeinet.com",//URL 必需项
Allowautoredirect=true,//自动跳转
AutoRedirectCookie=true//是否自动处理Cookie
};
//请求的返回值对象
HttpResult result = http.GetHtml(item);
//获取请请求的Html
string html = result.Html;
//获取请求的Cookie
string cookie = result.Cookie;
//获取URL重定向时最后一次访问的URL
string ResponseUri = result.ResponseUri;
只有
[C#] 纯文本查看 复制代码 Allowautoredirect=true,//自动跳转
AutoRedirectCookie=true//是否自动处理Cookie
这两个同时为真时才会有效,这点请大家注意
|