WSS 3.0
There are 2 entries for the tag
WSS 3.0
Contrary to popular belief it is possible to programmatically manipulate the SharePoint's web.config. When attempting to programmatically manipulate the web.config it is wise to have a utility to promptly roll back your modifications. The Kid has provided us with just such a utility.
Download Web.Config Modification Manager For SharePoint
The Modification Manager is available in both an application page (ASPX) and solution setup versions. If you download the application page version you will notice the following code which is used to remove modification from the web.config. Notice that the code first removes the modification, then an update is done on the oApp...
How do I create a custom list? 1: Guid listId = webSite.Lists.Add("Sample", "Sample List", SPListTemplateType.GenericList); 2: How to determine if a list already exists within an SPWeb?
1: public static bool DoesListExist(SPWeb web, String listName) 2: { 3: foreach (SPList list in web.Lists) 4: ...