I have been trying to get a complete example on the following Open a website using the WebBrowser control in C#.net 2010.
Enter the UserID and password,
Click on the Login button
Then, on the next page, enter all the form fields and submit
On a different page, read the results and store it in a file or anything. Main requirement is to fetch that data and store it.
Can you please help me with the source code ?
How can i carried out this task ?
Thank you.
Loading
Dhirendra MisraPosted Jan 6, 2014, 4:44 AM
You can refer the following link.
http://stackoverflow.com/questions/19044659/c-sharp-webbrowser-control-form-submit-not-working-using-invokememberclick
Fetching the data will be part of you web application and reading the output html and saving it you can do from your windows application within Document_completed event.
Like this :
Thanks