Hi
I'm using eXml to show a Xml nicly on a WebPage and it works great except from when theres a " inside the tag :
<com:BuyersReferenceID schemeID=" EAN">5798007151621</com:BuyersReferenceID>
here there ar Inserted a blank between the first " and EAN. The blank is not in the XmlDocument (xDoc)
Using VS 2005 /.NET 2.0
aspx file:
<xmllab:exml id="EXml1" runat="server" showfriendlyxml="True"></xmllab:exml>
code file:
xDoc.LoadXml(doc);
EXml1.Document = xDoc;
Thanks