public string Get_Page(string xURL)
        {
            string content = "";
            HttpWebRequest httpget = (HttpWebRequest)HttpWebRequest.Create(xURL);
            try
            {
                HttpWebResponse httpres = (HttpWebResponse)httpget.GetResponse();
                Stream httpstr = httpres.GetResponseStream();
                StreamReader sr = new StreamReader(httpstr, Encoding.Default);
                content = sr.ReadToEnd();
            }
            catch (Exception)
            {            }
            return content;
        }我通过这个代码可以任意的采集大多数的网站,为何有的个别抓取不到呢?
是否对我的服务器IP进行封锁,还是对方的IIS做了哪些设置? 请各位大虾帮帮忙解决一下