The task is simple, but I couldn\'t find the answer.
Removing tags (nodes) is easy with Node.Remove()... But how to replace them?
There\'s a ReplaceChild() metho
Are you sure InnerHtml is a read only property?
The HTMLAgility pack's documentation says otherwise: (Cut & Paste)
Gets or Sets the HTML between the start and end tags of the object.
Namespace: HtmlAgilityPack
Assembly: HtmlAgilityPack (in HtmlAgilityPack.dll) Version: 1.4.0.0 (1.4.0.0)
Syntax
C#
public virtual string InnerHtml { get; set; }
If it is read only could you post some code?