ObjectSharp Blogs

You are currently viewing

Justin Lee's Technology Blog


Languages, Languages, Languages!


Browse by Tags

SharePoint Designer Bug With Creating Data View Web Parts

For those who has been getting the ultimate crashes from SharePoint Designer, and many weird oddities with it, this is something that you should know while working with Data View Web Parts. Occasionally, SharePoint Designer will NOT allow you to add a Read More...

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...