In SharePoint, integrating publishing feature is possible only in MOSS 2007 site and not in WSS site.By turning on publishing feature you can use Web Content Management(WCM) feature in the site.Once the WCM feature is enabled you can then brand the site with your custom look and feel and can also enable the multilingual support in the site. The multilingual feature helps in creating different folder-based sites according to the languages set to the site. While creating a site collection or site & workspaces using SharePoint API , you can add these two lines code to enable the publishing feature.Provided below is an example using C# for enabling publishing feature at site collection level. Thanks, Bijayani Learn about SharePoint 2010 Migration http://www.mindfiresolutions.com/Sharepoint-Support.htm[^]
Bijayani
Posts
-
Enable publishing feature programmatically in MOSS 2007 site -
Problems Running Sharepoint Custom Timer JobsWhen we want to run a task (like sending emails or deleting the list items etc. . . ) in Daily basis or in Hourly basis then we can use a Timer job to this task .To see the timer job you can move to the Central Administrations then click on the operations tab, then in the Global Configuration section you can see the Timer job status and timer job definition. In timer job definition you can get the details of the timer job i.e. the title , the web application to which it is attached and the schedule type i.e. Daily, Weekly or hourly basis. To get the status of the timer job go to the timer job status, here you can view status. Steps To create a custom timer job: 1. We need to create a class that inherits the SPJobDefinition Class. Then we need add the constructor s and the Execute () method. namespace TestTimerJob { public class CustomTimerJob : SPJobDefinition{ public CustomTimerJob (): base(){ } Hope you find this tips useful and of assistance. http://www.mindfiresolutions.com/How-to-create-a-Custom-Timer-job-in-SharePoint-957.php[^] Thanks, Bijayani
-
Document merging in C#.NETHi All, I am sharing tips which is about Document merging in C#.NET. Some times during application development we need to generate a MS Word document from a predefined format and some custom data. The predefined format is generally called as Template. This template used to carry some merge fields which can be replaced with the user data. The user data can be taken from DB or XML data source etc. The following procedure describe how to generate a MS Word document by merging a word template with external data using C# and MS Word reference libraries. Step 1:Create a template word document Hello {Recipient_name}, Wish you a very Happy New Year. Thanks - Here {Recipient_name} is called as a merge field and this can be replaced with the external content. - The shortcut key to create the merge field in word document is : ctrl+F9 Hope you find this tipshttp://www.mindfiresolutions.com/Document-merging-in-CNET-734.php[^] useful and of assistance. Thanks, Bijayani
-
Enable publishing feature programmatically in MOSS 2007 siteHi All, I am sharing a sharepoint tips. The tips is about "Enable publishing feature programmatically in MOSS 2007 site". In SharePoint, integrating publishing feature is possible only in MOSS 2007 site and not in WSS site.By turning on publishing feature you can use Web Content Management(WCM) feature in the site.Once the WCM feature is enabled you can then brand the site with your custom look and feel and can also enable the multilingual support in the site. The multilingual feature helps in creating different folder-based sites according to the languages set to the site. While creating a site collection or site & workspaces using SharePoint API , you can add these two lines code to enable the publishing feature.Provided below is an example using C# for enabling publishing feature at site collection level. Hope you find this tipshttp://www.mindfiresolutions.com/Enable-publishing-feature-programmatically-in-MOSS-2007-site-171.php[^] useful and of assistance. Thanks, Bijayani
-
Cloning a XLS worksheet in PHPHi, I am sharing a PHP tips with you all. Below is the brief about the tips. Instead of designing and writing the data in a Excel file, it is much easier to have a template with all the designs embedded. We have to just read the template file and write our data in the particular cells. But if we are going to have, say, 'n' number of sheets, then the template file also should have the same number of sheets whose memory will also be high and the time it takes to read it will also be high. Hope you find this PHP tips useful and of assistance. For more detail, please visit this link http://www.mindfiresolutions.com/Changing-SharePoint-site-locale-programmatically-834.php[^] Thanks, Bijayani