I have a web page that contains a form and a button.
My application contains:
- Webbrowser (which loads and displays the web page)
- A button (which runs my task)
I make a success to fill the web form automatically by my application.
The problem is that it is impossible for me to find a code that allows my application to click on the button on the webpage.
The source code for the button (in the webpage):
|
Thanx.
CrishPosted Nov 30, 2010, 5:43 AM
You can also click the button programmatically using below link.
http://stackoverflow.com/questions/96153/how-to-click-a-button-on-an-asp-net-web-page-programmatically
Abhimanyu K VatsaPosted Sep 11, 2010, 5:48 AM
there is lots of things to be outlined....
it is almost less usable, coz form is form and it is only for to fill by users. that is another thing, assuming any user is logged in your website and then wishing to fill any form then some of fields on form will automatically be filled by database like his username, fullname, address, emailid etc. but these all details should be exist in database.
above all can be done by using codes inside pageload event handler.
Page_Load()
{
}
thanks