苏飞论坛

标题: 获取URL重定向时最后一次访问的URL地址 [打印本页]

作者: 站长苏飞    时间: 2015-1-19 10:12
标题: 获取URL重定向时最后一次访问的URL地址
导读部分

【HttpHelper万能框架】教程目录贴  http://www.sufeinet.com/thread-9989-1-1.html
【HttpHelper万能框架】源码购买帖  http://www.sufeinet.com/thread-9926-1-1.html

本功能可在线测试http://tool.sufeinet.com/HttpHel ... http://sufeinet.com
教程部分

方法很简单如下
[C#] 纯文本查看 复制代码
            //创建Httphelper对象
            HttpHelper http = new HttpHelper();
            //创建Httphelper参数对象
            HttpItem item = new HttpItem()
            {
                URL = "http://sufeinet.com",//URL     必需项   
                Method = "get",//URL     可选项 默认为Get   
                ContentType = "text/html",//返回类型    可选项有默认值   
                Allowautoredirect=true
                //ContentType = "application/x-www-form-urlencoded",//返回类型    可选项有默认值   
            };
            //请求的返回值对象
            HttpResult result = http.GetHtml(item);
            //获取请请求的Html
            string html = result.Html;
            //获取请求的Cookie
            string cookie = result.Cookie;
            //获取URL重定向时最后一次访问的URL
            string ResponseUri = result.ResponseUri;


这个只有在Allowautoredirect=true时才有意义,要不然肯定是我们输入的URL,所以没有什么意义。这点请大家牢记


作者: howzew    时间: 2015-1-19 12:08
老大速度真快!这么快就出来了
作者: 水手    时间: 2015-1-19 19:48
强烈支持楼主ing……
作者: bordex    时间: 2016-7-6 12:08
强烈支持楼主ing……




欢迎光临 苏飞论坛 (http://www.sufeinet.com/) Powered by Discuz! X3.4