The most pages are used by Central Administration in Windows SharePoint Services 3.0 are located under 12 Hive\Templates\Admin. The virtual location of these pages can be mentioned as SiteUrl/_admin/Page.aspx
I list out those pages in following table.
Page Title
Server Relative URL Location
Description
AddContentDatabase
/_admin/newcntdb.aspx
This page used to create a new content database or to add an existing content database [...]
SharePoint Lists are enabled with multiple content types, because of that we can add items with different type of properties and documents. In advanced, the New Menu displays those Content type available in List as its sub-menu.
Fig1 Content Types Visible in New Menu
So how the SharePoint displays those Content types under New menu and [...]
By SharePoint object model, how we can get all the sites with sub sites and the top-level sites alone separately.
The following snippet which returns all the sites and sub-sites from the site collection.
SPSite site=new SPSite.AllWebs;
and if we want only the top-level sites from the sitecollection, we have to call the SPWeb object.
SPWebCollection webs=site.RootWeb.Webs;
and webs[0].Webs; returns [...]
Hello guys, few weeks I had a busy schedule, so I can’t concentrate on blogging. Now I’m back with more ideas to be shared with you all.
Here I’m going to give you a simple snippet of "Retrieving the content type enabled lists" from the site using Client Object Model.
ClientContext context = new ClientContext("
In SharePoint out-of-Box, we can’t able to add the internal name for the SharePoint field i.e., Columns. But we can enable that by modifying the Create column page on 12 Hive.
For that we have to modify the FldNew.aspx page, that is available under 12 Hive\TEMPLATE\LAYOUTS folder.
Before modifying, take a copy of that file.
Step 1: Open [...]
