HI friends,
I want to capture the data from different sites and want to show them up on site can anyone help me out with this
regards
Ravinder
HI friends,
I want to capture the data from different sites and want to show them up on site can anyone help me out with this
regards
Ravinder
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
chintan desaiPosted Feb 25, 2009, 5:23 AM
Bechir BejaouiPosted Dec 15, 2008, 6:33 AM
WebClient oClient = new WebClient();
const string url = "http://www.c-sharpcorner.com/Forums/AddPost.aspx?ThreadID=51499";
byte[] request = oClient.DownloadData(url);
UTF8Encoding encoding = new UTF8Encoding();
lblWebpage.Text = encoding.GetString(request);
raviPosted Dec 14, 2008, 6:57 PM
well its like scrapping. it can be any kind of data for eample if i want to show some top stories on my website and i want to capture the data from all the news websites how could i do that
regards
Ravinder
Bechir BejaouiPosted Dec 13, 2008, 7:03 PM