I have tried both of the following methods to get the source code of a webpage and neither were able to open the webpage. Both methods through the exception remote sever 403 forbidden
string htmlstring = String.Empty;
WebClient wc = new WebClient();
htmlstring = wc.DownloadString(website);
and
string htmlstring = String.Empty;
WebRequest request = WebRequest.Create(website);
WebResponse response = request.GetResponse();
Stream dt = response.GetResponseStream();
StreamReader sr = new StreamReader(dt);
htmlstring = sr.ReadToEnd();