i want to scrape table from this site : http://www.x-rates.com/table/?from=INR&amount=1
and i want to do this with C# Windows Application
I use web request and response and it shows me all page source code
how can I pick that specific table ??
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://www.x-rates.com/table/?from=INR&amount=1");
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
StreamReader reader = new StreamReader(response.GetResponseStream());
richTextBox.text = reader.ReadToEnd();