I have this site I want to get information from. To get the file that I need, I need to go through several pages with cookies and to submit a form.
I already have a code that deals with the cookie, but to submit the form is much trickier since the site is in ASP.NET, which means the form contains the view state.
Is there some smarter way to simulate surfing the web? Maybe some kind of web browser API, or some kind of service that lets you browse from page to page with cookies and form values?
Thanks,