I want to get some data from html tags in a web page. For example I have a web site that\'s got \"www.example.com/test.html\", this is text which I want to split. I want to firs
you need to have a look at:
here is the sample from codePlex.com
HtmlDocument doc = new HtmlDocument(); doc.Load("file.htm"); foreach(HtmlNode link in doc.DocumentElement.SelectNodes("//a[@href"]) { HtmlAttribute att = link["href"]; att.Value = FixLink(att); } doc.Save("file.htm");
Hope this helps