I never had any use for sticky notes before. However, I did notice a colleague of mine using them to…
About: MGR: the Intelogist
Author Archives: MGR: the Intelogist
How to: Define which fields to appear in a SharePoint RSS Feed
In SharePoint 2007: 1. Navigate to the list/library that you want to get an RSS feed for 2. Navigate to…
How to: Add data to the Application Cache programmatically
There’s two ways to add data to the Application Cache. Notice that this is different to the Session cache in…
How to troubleshoot: “a web part or web form control on this page cannot be displayed or imported. the type could not be found or it is not registered as safe”
In case you renamed a custom web part, make sure you have renamed all the references to the web part:…
How to: Count the lines of code (project/solution)
If you ever wondered how many lines your code is, you can easily get such information (along with other -arguably…
How to: allow .pdf files in SharePoint 2010 to open in the browser window
SharePoint will by default request that the user saves a .pdf file and open it locally inside the client application…
How to: Check for Enter/Return inside a textbox (server-side binding)
Working with textboxes on a page, you may find yourself wanting to submit the data as soon as the Enter/Return…
How to: add properties to custom web parts
You can easily add custom properties to your custom web parts so that you can pass in values to them…
How to: troubleshoot an empty SPListItemCollection (CAML Query)
In a previous post, I talked about the SPQuery and the CAML query builder. One common problem that you may…
How to: Work with the SPQuery
The SPQuery will be in Caml format. You can use one to get a collection of items from a list…