Starting with this navigation call:
Webbrowser.Navigate("localhost")
the Webbrowser.Document object holds a ref. to a HTML object with the following attributes:
id="first"
name="first"
type="text"
value="something"
My question is; How do I change the value?
I have seen some posts about how to get the element via getElementById:
Webbrowser.Document.getElementById("first")
But i still have no idea how to change its value.
I found it:
Or if the element has no
id: