Hi,
You would do something like this:
Code: C#
//Get the DOM element object
EO.WebBrowser.DOM.Element e = webView1.GetDOMWindow().document.getElementById("ElementId"];
//Use indexer to access a property
string name = (string)e["name"];
Alternatively, you can use this:
Code: C#
//Get the value of the name attribute for "ElementId"
webView1.EvalScript("document.getElementById('ElementId').name");
Hope this helps. Please feel free to let us know if you have any more questions.
Thanks!