I am trying do get response from this site(http://www.citizensbank.com/) but i am unable to achieve it. There is an exception saying operation timed out. Even i increase the timeout to 30 mins.
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://www.citizensbank.com");
request.Timeout = 30000;
HttpWebResponse response;
try
{
response = (HttpWebResponse)request.GetResponse();
return response.ResponseUri;
}
My question is, does the site somehow prevent to get the output.