Tag: Sharepoint 2010

  • InfoQ FBA Pack Interview

    I was recently interviewed about the FBA Pack by Jonathan Allen of InfoQ.  The interview is here: http://www.infoq.com/news/2014/05/SharePoint-FBA

  • SharePoint 2013 FBA Pack Released

    The SharePoint 2013 FBA Pack has been released. It was ported from the SharePoint 2010 FBA Pack (which was originally ported from the SharePoint 2007 CKS Forms Based Authentication Solution), and includes all of the features from the SharePoint 2010 FBA Pack: User Management Role Management Membership Request Web Part Password Recovery Web Part Change Password…

  • Filter a SharePoint Calendar List With a Date Picker

    I was trying to add a date picker to allow the filtering of a Calendar list in SharePoint. Unfortunately I had SharePoint Foundation, which is missing the Date Filter web part which only comes with the Enterprise edition of SharePoint. I found this article, which works great for filtering a specific date.  My calendar items…

  • Removing Null Characters (0x00) From Values in SQL Server

    I recently came across a problem while crawling a BCS data source in SharePoint 2010. Most of the 130,000 records were getting indexed, but I was getting an error on 25 records: Error while crawling LOB contents. ( ‘.’, hexadecimal value 0x00, is an invalid character. Line 25, position 10. ) When I first took…

  • Adding Breadcrumb Navigation to SharePoint 2010 Application Pages

    The application pages in my SharePoint 2010 FBA Pack were not properly displaying the breadcrumb navigation. They didn’t include ‘Site Settings’ in the navigation – they went straight from Home to the application page. I used the following blog entry to add the breadcrumb navigation: http://weblogs.asp.net/jan/archive/2008/04/16/adding-breadcrumb-navigation-to-sharepoint-application-pages-the-easy-way.aspx Unfortunately after making the changes, I still didn’t see…

  • Bulk Delete SharePoint Site Users with PowerShell

    Below is a PowerShell script for deleting a filtered list of users from a SharePoint site.  Simply copy the script to a .ps1 file, adjust the $SITEURL to the url of the site and adjust the $USERNAMEFILTER to a lowercase string that is contained in all of the usernames you would like to delete. The…

  • Mixed Anonymous and Secure Content with SharePoint 2010

    In this tutorial i’m going to step you through how to set up a SharePoint 2010 publishing portal with both anonymous and secure content. 1. Create a new Web Application in Central Admin. Make sure that you select ‘Yes’ for Allow Anonymous.  All other values can remain at the defaults. For this example I’m going…

  • Performance Profiling a SharePoint 2010 Project using EQATEC Profiler

    I wanted to profile a SharePoint 2010 project i’d been working on, in order to find some of the slower methods so that they could be improved.  I decided to give EQATEC Profiler a try since it had some good recommendations on StackOverflow and was FREE. EQATEC works by modifying and rebuilding your assemblies.  Since…

  • Search Refinement Panel Web Part “Show More” Link Not Working

    I recently discovered that the “Show More” link on the Search Refinement Panel web part had stopped working, seemingly out of the blue.  With a bit of debugging I discovered that the functions defined in the onclick event: were returning “Object Expected”.  For some reason the functions were no longer defined. I eventually figured out…