Try setting the line UserAgent:
public static void PretendToBeIE(HttpWebRequest request)
{
request.UserAgent = "Mozilla/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)";
}
There is no guarantee that it will work, but it all depends on the web application you use.
source
share