I am currently dealing with an old website where there are political issues preventing the migration of the database or re-designing the site.
Since I can't get access to the database I basically I want to write some Javascript to download all the data from this website by just parsing the returned HTML. This would be easy if each page of data was an actual URL but it's not. Each page is created dynamically via ASP so I need to somehow parse the returned page format and save the data.
I also need to deal with inserting session cookies into the script so that the website thinks I am a valid logged in user.
Any ideas on how one would go about making this task easier ?