Category: sharepoint

Fantastic 40 templates on SharePoint 2010

2 ways to send email within SharePoint, using code

  Using SPUtility.SendEmail (SharePoint way) Try Dim thisWeb As SPWeb = SPControl.GetContextWeb(Context) Dim toField As String = “someone@microsoft.com” Dim subject As String = “Test Message” Dim body As String = “Message sent from SharePoint” Dim success As Boolean = SPUtility.SendEmail(thisWeb, True, True, toField, subject, body) Catch ex As Exception ‘ handle exception End Try More …


Write html code in SharePoint via Calculated Columns

UPDATE: Find the 2010 version here !! Struggling to find a good way to display a url in a list (output generated by the codeplex listsearch project), I found this solution from PathToSharePoint. Normally, when you use a calculated column to create a dynamic link, you get the full url, like “http://www.test.com?id=9876”, when you want …


Configure PDF iFilter on 64 bit machines

The indexing of PDF’s at a client was not working. Together with a coworker (tnx Robbert Kloosterman) we fixed it by changing a registry value.   Round up: 1. install PDF iFilter for 64 bit 2. install the icon (easy fix: ttp://www.codeplex.com/SharePointPdfIcon) 3. start – run – regedit 4.  go  to “\\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\OfficeServer\12.0\Search\Applications\{site GUID}\Gather\Portal_Content\Extensions\ExtensionList 5. add …


Extend SharePoint Designer with custom activities

searching for FBA users on SharePoint 2007

So, you created this big portal for your suppliers, customers or other in SharePoint. You have implemented FBA but now you want to search in this extensive list of people ? Continuing on the FBA Codeplex solution by Stacy Draper, adding just a few lines of code can do this for you ! The FBA …


create a log out button on SharePoint 2007 – 2010

I ran into a question from a client, who was working with FBA. He wanted to simplify his portal for extranet users, so he wanted to display a log out link on his page. It turns out the solution is really simple: just create a link to the _layouts/signout.aspx page in a content editor webpart. …


How to create a Project Dashboard ?

Every Manager needs a dashboard, and every Program Manager needs a project dashboard, so he can view in an instance what projects are running good, and what projects need corrections. Ofcourse you can build something like that in SharePoint, with nice KPI’s, but that is quite easy, so you dont need me to tell you …


Web Usability blog hits the nail on error messages

Els Aerts on the Web Usability Blog hits the nail with her blogpost about Error messages. Not only true for all kinds of websites and client apps, but just the same in SharePoint..My customer doesn’t want a fat-ass code page telling him in a bizarre language that something is wrong..some SharePoint errors are just downright …


Federation Services for AD

A collegue of mine was playing and blogging about this: Federation Services with Microsoft Server 2008. No, this is not the Search solution, but a identity management solution. The best definition online I could find is: Active Directory Federation Services (AD FS) is a feature introduced with Windows Server 2003 R2 that provides an identity …