HtmlElementCollection links = webBrowser1.Document.GetElementsByTagName("a"); foreach (HtmlElement link in links) { //if link links to some interested URL, navigate to link } Which property may I use to get the "a href=some url"?
HtmlElementCollection links = webBrowser1.Document.GetElementsByTagName("a"); foreach (HtmlElement link in links) { //if link links to some interested URL, navigate to link } Which property may I use to get the "a href=some url"?