sorry:
i want to go to a website and with my application i want to insert in the login_form my username and password automatically evary 15 minutes....which control should i use? Thank you
use the webbrowser control, if you go into references in your .net application, you need to select it from the COM tab, and it should be called "Microsoft Internet Controls"
this example will show you how to fill in fields in an html form that is loaded into the webbrowser control on a windows form
it then submits the html form
since its just an example, it doesnt really submit any data, but navigates to microsoft.com, but will give you the knowledge to implement it how you need it in your own app.
Last edited by kleinma; Oct 28th, 2004 at 08:14 AM.
Nice example to automate forms. It works fine and helps you to start getting around with webcontrol and forms. Just a quick question. After submiting a form, how do I get the current URL of webbrowser control ? I mean, when I try "curURL = webbrowser.url.ToString" my VB 2005 says url is a not a member of axsHDoc...." so I can't get the current url into a variable and take a decision based on what url my browser is.
okay i logged in because i couldnt find out how to fill/submit a form with the web browser object and u guys came the closest, navigate to the target of the form and thats where the form gets submitted.
You guys are great. I am relatively new to .NET programming and can always find what I am looking for here. A+ for all efforts and information. Thanks again and again.