How to submit info programatically?
-
I used WebBrowser to get an html Document, in which there was a "Submit" button. I can get this HtmlElement. How to emulate a click in a program? Call the elem's Click is invalid, cause it's a delegate , it can only appear in the leftside of a + or +=. Thanks.
-
I used WebBrowser to get an html Document, in which there was a "Submit" button. I can get this HtmlElement. How to emulate a click in a program? Call the elem's Click is invalid, cause it's a delegate , it can only appear in the leftside of a + or +=. Thanks.
Have you considered calling the method that handles the Click event?
I will use Google before asking dumb questions
-
Have you considered calling the method that handles the Click event?
I will use Google before asking dumb questions
It's an "event delegate", you cannot call it in your code. You can only use it at the left side of + or += operator. You know, I download an html document, it's written by other people. In the page there was a button. I want to emulate a "click" of the button in my program. I googled but no useful result.