I\'m relatively new to using C#, and have an application that reads parts of the source code on a website. That all works; but the problem is that the page in question requi
Sometimes, it may help switching off AllowAutoRedirect and setting both login POST and page GET requests the same user agent.
AllowAutoRedirect
POST
GET
request.UserAgent = userAgent; request.AllowAutoRedirect = false;