<!DOCTYPE xsl:stylesheet [<!ENTITY nbsp " ">]>
And the computer turned that into Ă exactly as I told it to or in the case of IE6, a ?. Here's a simple fix for it:
<!DOCTYPE xsl:stylesheet [<!ENTITY nbsp "<xsl:text disable-output-escaping="yes">&nbsp;</xsl:text>">]>
It will turn all in your XSLT into which will in turn display correctly on your browser.
Dummy coder.
No comments:
Post a Comment