I get page source with below code. after it takes second page's source code it gives web exception which says "The operation has timed out" How can I solve this?
Uri url = new Uri(urlAddress);
WebClient client = new WebClient();
client.Encoding = System.Text.Encoding.GetEncoding("windows-1254");
string htlm = client.DownloadString(url);
return htlm;