string url = "https://www.baidu.com/s?wd=北京故宫"; System.Net.HttpWebRequest req; HttpWebResponse response; Stream stream; req = (HttpWebRequest)WebRequest.Create(url); response = (HttpWebResponse)req.GetResponse();
获取的结果是:
<html>
<head>
<script>
location.replace(location.href.replace(“https://”,”http://”));
</script>
</head>
<body>
<noscript><meta http-equiv=”refresh” content=”0;url=http://www.baidu.com/”></noscript>
</body>
</html>
解决方案
5
你这里的东西看不出什么来
返回的结果明显是访问错误返回的结果 让浏览器跳百度首页去
而贴出来的代码中 url 又是正确的。
返回的结果明显是访问错误返回的结果 让浏览器跳百度首页去
而贴出来的代码中 url 又是正确的。
35
你的 https 应该改为 http。