Create sub site programmatically in SharePoint 2010 13 April 2011 Sometime we require creating a sub site programmatically in code. Here is the simple way you can create a sub site programmatically. (SPSite site = new SPSite(http://siteCollectionUrl)) { using (SPWeb...
Modify web.config settings on feature activation in SharePoint 13 April 2011 In SharePoint 2010 there is a way to modify web.config settings file. You need to use SPWebConfigModification class which is a part of Microsoft.SharePoint.Administration namespace. This class allows...