vote up 1 vote down star
2

Hi,

I want to access HTML content from wikipedia .But it is showing access denied.

How can i access Wiki. Please give some suggestion

flag

1 Answer

vote up 6 vote down check

Use HttpWebRequest

Try the following:

string Text = "http://www.wikipedia.org/";
HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(Text);
request.UserAgent = "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)";
HttpWebResponse respons;
respons = (HttpWebResponse)request.GetResponse();
Encoding enc = Encoding.GetEncoding(respons.CharacterSet);
StreamReader reader = new StreamReader(respons.GetResponseStream(), enc);
string sr = reader.ReadToEnd();
link|flag
3  
...and, of course, respect the copyright (en.wikipedia.org/wiki/…). – T.J. Crowder Oct 13 at 13:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.