when i try to get this link http://www.yellowpages.com.au/qld/gatton/a-12000029-listing.html[^] using HttpWebRequest request = (HttpWebRequest)WebRequest.Create(link); request.AllowAutoRedirect = true; HttpWebResponse response = (HttpWebResponse)request.GetResponse(); Stream resStream = response.GetResponseStream(); StreamReader objSR; objSR = new StreamReader(resStream, System.Text.Encoding.GetEncoding("utf-8")); string sResponse = objSR.ReadToEnd(); i don't get any response from server please help why this happen
Palestine