Reference to undeclared entity exception while working with XML

XML, unlike HTML does not define entities (ie named references to UNICODE characters) so α — etc. are not translated to their corresponding character. You must use the numerical value instead. You can only use < and & in XML

If you want to create HTML, use an HtmlDocument instead.

Leave a Comment