ObjectSharp Blogs

You are currently viewing

Justin Lee's Technology Blog


Languages, Languages, Languages!


Browse by Tags

SharePoint Tip: Displaying HTML Encodes Properly

Here's a tip for those people getting &amp; instead of & (and all those other fancy html encodes) from your XSLT variables. You just need to add disable-output-escaping and set that to "yes" when you do a value-of. <xsl: value -of select= "$Site" Read More...

String Replacement with XSLT

While working with SharePoint, I found that I sometimes need to replace strings with some characters or strings, for example, replacing "&amp;" with "&", or replacing "_x0020_" with " ". This is a useful template to do so. I got this template Read More...