Monday, March 21, 2011

Error:Share Point Timer Service Not Activated

Hi all, i got an exception like "service timer not started......." while activating a web part feature to a site in share point. In share point all the operations run on a service timer, That's why i am not able to move single inch forward from that state. After googling for some...

Get The Input values from web part editor part in share point 2007

In SharePoint Portal Server 2003, which called its reusable widgets WebParts. Thus, it makes perfect sense that ASP.NET 2.0 provides fantastic support for WebParts, and it definitely is no surprise to see Microsoft Office SharePoint Server 2007 (MOSS 2007) built upon this very framework....

Add Fields to list in share point through coding.

In share point lists we have the fields. We can add the fields to list though administration. Here is the code to add the fields to list through coding. /// Add a field to the list private static void AddFieldToList(SPList list) { string fieldName = string.Empty; Console.WriteLine("enter the name of the field to add"); ...