Tuesday, 28 August 2012

Show Special Characters in XSLT WebParts.

Are you are working with XSLT WebParts (eg: People Search Core Results WebPart) and the special characters like ä, ë, é, ö, etc are getting replaced with a question mark (?) or a Square Box ? Let's change that then:

So basically the encoding of the XSLT is set to "iso-8859-1" by default and we will have to change it to "utf-8." Here is how to change the encoding: Find in your XSL file, the following line:
<xsl:output method="xml" indent="no" encoding="iso-8859-1"/>
view raw encode.xsl hosted with ❤ by GitHub

and change it to:
<xsl:output method="xml" indent="no" encoding="utf-8"/>
view raw decode.xsl hosted with ❤ by GitHub

Now all the special characters should be visible perfectly.

No comments: