>

A sample text widget

Etiam pulvinar consectetur dolor sed malesuada. Ut convallis euismod dolor nec pretium. Nunc ut tristique massa.

Nam sodales mi vitae dolor ullamcorper et vulputate enim accumsan. Morbi orci magna, tincidunt vitae molestie nec, molestie at mi. Nulla nulla lorem, suscipit in posuere in, interdum non magna.

Item level permissions – Removing a particular user or group

Item level permissions are implemented as per the business flow. It can be implemented in SharePoint 2007 either by implementing it as an event handler or a workflow. Depending on whichever way of implementation the following code segment can be used t…

Search Crawl Error – Error in the site data web service (Exception of type ‘System.OutOfMemoryException’ was thrown.)

Reasons as to when you may encounter this issue, It was observed that the document libraries and the lists use multiple content types which are not used by the system and thereby causing redundancy in data. Multiple content types in a list or a docume…

Copying a publishing page from one folder to another folder in the Pages Library

The following code can be used to copy a publishing page from one folder to another created in the pages library. oWeb.AllowUnsafeUpdates = True Dim ospListItem As SPListItem = Nothing …

Difference between the ‘Modified’ and the ‘Last Modified’ columns or fields in SharePoint 2007

The ‘Modified’ column as we see in the lists or document libraries provides us with the information as to the date and time the item was last modified. There is more nuances added to this column. The ‘Modified’ column not only keeps track of th…

Library not registered – IE error in SharePoint init.js

You may encounter this error when you try to install and then uninstall any of the Office products, in the SharePoint server. To fix this issue, if you see any of the office products installed in your server then navigate to that product and open it, i…

Searching for a list item using SPQuery in folders

Searching for an item in a list having multiple folders requires that an attribute to be added to the SPQuery command. The SPQuery.ViewAttributes property is required to be set to “Scope=’Recursive’” to enable sharepoint to sear…

Turning off Diagnosting logging in SharePoint

Though SharePoint logging is very much helpful is solving certain issues, we may come across certain situations where in there is a requirement to turn off diagnostic logging. To turn off the logging, Navigate to Central Administration, Under the secti…

Configuring POP3/SMTP in your SharePoint VPC

There are many situations where in we come across email enabled SharePoint lists, but since most of us work using a virtual environment as our development machine, this may prove to be a hardship. There is however some help available where in you can c…

How to Optimize a SharePoint Server 2007 Web Content Management Site for Performance

The article in the below mentioned msdn link talks about optimizing the SharePoint Server 2007 WCM site on performance issues, http://msdn.microsoft.com/en-us/library/bb727371.aspx

Item Level Permissions using SharePoint Event Handlers

You can use the following code to implement Item Level Permissions using Event handlers in SharePoint. The Item level permissions can also implemented manually by clicking on every list or document library item. This may prove to be tedious and also ma…