G
Guest
I have the XML file content as
<resources>
<html><![CDATA[<B>Hello World</B>]]></html>
</resources>
and my html file content is
<html><![CDATA[<B>Hello World</B>]]></html>
the XML file when viewed doesnt give me any problem, but when it comes to
HTML the output that i recieve is
Hello World]]>
In order to remove the square bracket and the angle bracket in the HTML I
make the following correction:
HTML:
<html><![CDATA[<B>Hello World</B></html>
XML:
<resources>
<html><![CDATA[<B>Hello World</B></html>
</resources>
But now XML throws an error and HTML works fine.
Thanks for any help.
<resources>
<html><![CDATA[<B>Hello World</B>]]></html>
</resources>
and my html file content is
<html><![CDATA[<B>Hello World</B>]]></html>
the XML file when viewed doesnt give me any problem, but when it comes to
HTML the output that i recieve is
Hello World]]>
In order to remove the square bracket and the angle bracket in the HTML I
make the following correction:
HTML:
<html><![CDATA[<B>Hello World</B></html>
XML:
<resources>
<html><![CDATA[<B>Hello World</B></html>
</resources>
But now XML throws an error and HTML works fine.
Thanks for any help.