Raju
Raju

Reputation: 207

clicking submit button on aspx page programmatically

I have a list of Ids whose information available through a webpage. I need to input the Id and click the submit button for that. The numbers of ids runs over a million, so I need to automate this process. Is it possible to use Web scraping. I don't know where to start this.

Upvotes: 1

Views: 93

Answers (1)

Letseatlunch
Letseatlunch

Reputation: 2487

I'd recommend using fiddler to capture a single request you do manually and use this as your template. Then you'll have to add some code to manage the session and other cookies.

Upvotes: 1

Related Questions