(Vb.net 2005 express)
Kinda stumped when it comes to web controls....
Okay the basic layout:
Two panels.
Panel1 : Bunch of text boxes and such
Panel2 : has Web Browser Control
Looking to: put text from mytextbox.text into a text box in the web control
(The web control is
Bit of code for the text box in the web control:
Another thing, if possible:
Code to "Click" an image (The image is actually a link)
Code for that image
Where i got stuck at:
Not sure why it wont work =/
Thanks a ton for any help!
Kinda stumped when it comes to web controls....
Okay the basic layout:
Two panels.
Panel1 : Bunch of text boxes and such
Panel2 : has Web Browser Control
Looking to: put text from mytextbox.text into a text box in the web control
(The web control is
Bit of code for the text box in the web control:
HTML:
<label>Username</label><input type="text" name="username" tabindex="1">
Another thing, if possible:
Code to "Click" an image (The image is actually a link)
Code for that image
HTML:
<input type="image" src="http://mysite.com/sign_in.jpg" tabindex="4" alt="Sign In" title="Sign In"
width="80" height="21" style="margin-left: 4px; vertical-align: bottom"/></div>
Where i got stuck at:
VB.NET:
WebBrowserControl1.Document.All("username").Value = "DoeJohn321"
Thanks a ton for any help!
Last edited by a moderator: