EDN Admin
Well-known member
I m creating a C# application in which i m using Web Browser control, tell me how to get element by class name
HtmlDocument doc = webBrowser1.Document;<br/>
HtmlElement Username = doc.GetElementById("user_name");
this is with ID but now i want to fetch element with class !!!!!!!!!!!!!
is there any method to fetch element with class name????
View the full article
HtmlDocument doc = webBrowser1.Document;<br/>
HtmlElement Username = doc.GetElementById("user_name");
this is with ID but now i want to fetch element with class !!!!!!!!!!!!!
is there any method to fetch element with class name????
View the full article