I'm using webbrowser control. I use the web1.Navigate method to go to "http://www.abc.com/abc.htm" . On this html there is a form called "form1". Inside this form there are several input textboxes for user to key in the values. At the end of this form there is something like this:
How can click on this image using programme code? If it is something like this:Code:<input type="image" src="../image/abc.gif" border=0>
then I'd do something like this:Code:<input type=submit name=hello value="GO">
and I can click on it. How about the image?? Thanks!Code:web1.document.forms("form1").hello.click
