Hi,
I have an HTML text:
How can I click on this button called "Free User" with a vb. net code?
I tried to use the code bellow, but how can I get all the element IDs of the webbrowser and know which one belongs to Free User button?
Thanks!
I have an HTML text:
HTML:
<input type="hidden" name="dl.start" value="Free" />
<img src="/img2/dl_langsam.gif">
<br />
<input type="submit" value="Free user" />
</form>
How can I click on this button called "Free User" with a vb. net code?
I tried to use the code bellow, but how can I get all the element IDs of the webbrowser and know which one belongs to Free User button?
VB.NET:
WebBrowser1.Document.GetElementById(???).InvokeMember("Free User")
Thanks!
Last edited: