R
Randy
I'm creating XML using the above. My problem is that if I have a string that
is passed to WriteElementString such as
WriteElementString("description", @"<![CDATA[<a
href=""http://www.google.com"">Here is the link</a>]]>");
then, it outputs the XML as...
<description><![CDATA[<a href="http://www.google.com">Here is the
link</a>]]></description>
I don't want it to convert the < to < etc. Is there a way to make
XmlTextWriter not convert the characters? Or should I go another route?
Thanks
is passed to WriteElementString such as
WriteElementString("description", @"<![CDATA[<a
href=""http://www.google.com"">Here is the link</a>]]>");
then, it outputs the XML as...
<description><![CDATA[<a href="http://www.google.com">Here is the
link</a>]]></description>
I don't want it to convert the < to < etc. Is there a way to make
XmlTextWriter not convert the characters? Or should I go another route?
Thanks