Monthly Archives: April 2011

SharePoint 2010 : How to create custom error page for SharePoint website?

Create your custom error page (error.aspx or error.htm) . I have created an htm page and place it 14 hive\Template\<Custom Folder>\error.htm. Code Snippet <HTML><HEAD></HEAD><BODY>This is SharePoint 2010 error page.</BODY><HTML> Open the power shell command prompt and change the page with … Continue reading

Posted in Uncategorized | Leave a comment

SharePoint 2010 : Seven pages which doesn’t user Master Pages

In SharePoint 2010, following are pages which doesn’t use the Master page but still customizable :- 1) AccessDenied.aspx 2) Confirmation.aspx 3) Error.aspx 4)  Login.aspx 5) Reqacc.aspx 6) SignOut.aspx 7) WebDeleted.aspx

Posted in Uncategorized | Leave a comment

My previous blog link

http://blogs.msdn.com/b/navdeepm/

Posted in Uncategorized | Tagged | Leave a comment

SharePoint Troubleshooting tools

following are the tools which are very helpful while working with SharePoint Technologies. It save lot of time in development, deployment  and administration of SharePoint products. SPDisposeCheck is a tool that helps developers and administrators check custom SharePoint solutions that … Continue reading

Posted in Uncategorized | 1 Comment

How to get the claim info from the SharePoint 2010 object Model

Get all the SPClaimProviderDefinition SPClaimProviderManager manager = SPClaimProviderManager.Local; foreach (SPClaimProviderDefinition provider in manager.ClaimProviders) { Console.WriteLine(“Provider Dispaly Name :- ” + provider.DisplayName); Console.WriteLine(“Provider AssemblyName :- ” + provider.AssemblyName); Console.WriteLine(“Provider Description :- ” + provider.Description); Console.WriteLine(“Provider IsValid :-” + provider.IsValid); Console.WriteLine(“Provider IsUsedByDefault … Continue reading

Posted in Uncategorized | Leave a comment