I Want to develope an app I give Urls of specific website to it,and it extract all links from that Web page. Here the web page that I want to give it's Url to my app,is developed by Asp.net and contains a Search buttom ,a GridView for showing the result and a DataPager ,and GridView contains HyperLinkField control for binding to the search's result.
When I click the Search buttom of the goal page the page is postbacked and show search result by GridView without changing the url of the page.
For example if search result have 500 records and datapager.PageSize=10 then we have 50 pages.
Now I want to know is it possible to extract all 500 links that binded to Gridview at once with my app,except opening all 50 pages and extract any page one by one with my app?
Thanks.