I am using C# HttpWebRequest to get some data of a webpage. The problem is that some of the data is updated using javascript/ajax after the page is loaded and I am not getti
Use HttpWebRequest to download the page. Search the source code for the relevant AJAX information and then use a new HttpWebRequest to pull that data down.