Browse by Tags

All Tags » c# (RSS)

Customizing ADFS login for SharePoint 2010: how we did it by Bas

In SharePoint 2010 the possibility of claims based authentication was introduced. The out of the box experience of this functionality is often OK, for example in cases of corporate intranets and extranets, but it doesn’t always fulfill the requirements...

SharePoint Dispose Check by Bas

SPDisposeCheck is a tool to help you to check your assemblies that use the SharePoint API so that you can build better code. It provides assistance in correctly disposing of certain SharePoint objects to help you follow published best practice. This tool...
Filed under: , , ,

SharePoint events: modify SPListItem fields with vars from the Session in the itemAdding or itemAdded events by Bas

Some time ago I tried to alter a field of a SPListItem right after the moment that the item has been created. A var was stored in the Session so it could be used on the newly created SPListItem (itemAdded). NOT. I figured out that the HttpContext isn't...