You can loop thru the elements in the WebBrowser.Document and if you find that it is an element of type INPUT, get its value (or whatever you want).
e.g.
(not tested code)
vb.net Code:
For Each element As HtmlElement In WebBrowser1.Document.Body.All If element.TagName = "input" Then 'you can access the element here 'e.g. we show its value in a messagebox for example MessageBox.Show(element.GetAttribute("value")) End If Next




icon on the left of the post.
Reply With Quote