I\'m trying to implement a limited web crawler in C# (for a few hundred sites only) using HttpWebResponse.GetResponse() and Streamreader.ReadToEnd() , also tried using Strea
Try to add cookie(AspxAutoDetectCookieSupport=1) to your request like this
AspxAutoDetectCookieSupport=1
request.CookieContainer = new CookieContainer(); request.CookieContainer.Add(new Cookie("AspxAutoDetectCookieSupport", "1") { Domain = target.Host });