I'm trying to scrape the contents of a page using simple_html_dom but the problem I have is that the page I'm trying to scrape is an aspx page and the links on that page all use javascript:__doPostBack to display the data (i.e. there's no data on that page itself until you click one of the links and it then displays the data on the same page).
So if I try to scrape the data off that page I'd need to somehow follow the links but as they're javascript:__doPostBack links and post back to the same aspx page I'm not sure if it is possible or where I'd start?
Thanks.
Steve.