June 2015
Lookup column is blank after moving the list as STP file from one environment to another.
.
Do you know the importance of lookup column in sharepoint list?Its the kind of field in a list which pulls data from another field of a List.Suppose if you have two list called ListA and ListB in your sharepoint web…
How to create a 404 or Custom Error Page in SharePoint 2010
.
404 Error page is a standard to display a page with your own message if user mistype a page name. To configure custom error page eg HTTP 404 Page not found error in SharePoint 2010. It is a good practice…
Error-The Method GetItems of the type List with id is blocked by the administrator on the server
.
Recently i was working with SharePoint Client object model, suddenly I face an issue while accessing fetching SharePoint list data. Error was-The Method โGetItemsโ of the type โListโ with id โ{Listsโs Guid}โ is blocked by the administrator on the server…
How to link 2 SQL DB servers
.
If someone wants to get data from 2 tables from 2 different SQL DB server. Then execute below stored procedures before running your query. Step1: exec sp_addlinkedserver @server=db-server-name Step2: EXEC sp_addlinkedsrvlogin db-server-name, false, NULL, id, password Once you executed…
How to add file in root of a sharepoint web application?
.
SharePoint folder structures are different, generally pages will be available in Page library. What if a user wants to add a file in root of SharePoint web application. Generally sitemap and robots files are added to root.Below is the powershell…
SharePoint central administration page is blank after sharepoint installation
.
I have installed sharepoint 2010 successfully, even i have completed sharepoint configuration wizard with no error, but still i got blank central administration page. How to solve this issue ?I searched over internet and i did below steps and my…
What is SPDisco.aspx file in Sharepoint 2010?
.
SPDisco.aspx file is a directory of all web services available in SharePoint. This file contains names and locations of all web service endpoints which is available in SharePoint.If you are creating custom web service in SharePoint then you must do…
How to get the internal name of a column in a sharepoint list?
.
I was working on a SharePoint project, suddenly i got this error saying “The property or field not initialized”. I searched over net and found that the internal name of a field or column in SharePoint list might be different….
What is collection in C#
.
Collection classes are used to store data of specific types. All types of collection support IEnumerable interface. Below are collection classes used in C#.net, all classes come under System.Collection namespace. List – An array does not allow dynamic resize, but…
Difference between Constant, read-only and static in C#
.
In this blog, we will learn about constant, read-only and static keywords in C# programming. We use const and readonly keyword to make a field constant and which values we can not modify. Const keyword We can not modify the…
Exception handling in C#
.
Exception Handling in C#. Most .NET languages support exception handling. Essentially, when an error occurs in the application, the .NET Framework throws an exception that represents the problem. You can catch this object using an exception handler. If you fail…
When Should We Use Response.Redirect(url,false) in C# code?
.
In this article, we are going to learn about Response.Redirect() in C#. So, Response.Redirect() may accept 2 parameters, one is the URL and another one is a boolean value i.e. True or False. What is the use of True and…
How to enable publishing feature in a team site in SharePoint 2010
.
How to enable publishing feature in a team site in SharePoint 2010 On a team site also publishing feature can be enabled.But once you enable the Publishing feature on a collaborative site, such as a team site or a blank…
Type is not registered as safe- Error is coming when deploying the web part to SharePoint site.
.
Type is not registered as safe- Error is coming when deploying the web part to SharePoint site. Type is not registered as safe Error is coming when deploying the web part to SharePoint site.As you all know while deploying web…

Abstract Class Vs Interface in C#
.
Abstract Class Vs Interface is one of the most asked questions in an interview. In this article, we will learn what are the main differences between abstract class and interface. And also we will know in which cases abstract classes…
What are types of pages in SharePoint ? Explain the concept of ghosting and unghosting
.
All sites in SharePoint are the collection of web pages. There are 2 types of concept in paging. Ghosting and unghosting. SharePoint pages from 2 places on are from database or another one from disk i.e. from virtual path.Ideally the…

