Thursday, May 30, 2013

The form cannot be rendered. This may be due to a misconfiguration of the Microsoft SharePoint Server State Service. For more information, contact your server administrator

Also you can check out my previous posts on:

- Backup of Site collection in SharePoint 2010

- Event Receivers in SharePoint 2010

- Create External List in SharePoint 2013

Error:
I got this error message while working in Infopath 2010. The full error message is "The form cannot be rendered. This may be due to a misconfiguration of the Microsoft SharePoint Server State Service. For more information, contact your server administrator".

Tuesday, May 28, 2013

Enable Sign in as Different User Option in SharePoint 2013

Here in this article, we will discuss the steps to enable "Sign in as Different User" Option in SharePoint 2013.

In SharePoint 2013 there is no option for "Sign in as different user" default. So we need to follow certain steps to Enable this option manually.

If you will go to the "System Account" drop-down, You won't find any option as "Sign in as Different User".

Sunday, May 26, 2013

Build browser based solution in SharePoint 2013

In this video you will see how to build browser based solution in SharePoint 2013. This video is presented by Asif Rehemani one of the popular SharePoint certified trainer and author.

Basically he will show you how to add functionality using just browser.

Example how easily you can add links into the site. Also explains about Site Contents  improvements in SharePoint 2013.

Saturday, May 25, 2013

Architectural changes in SharePoint 2013

In this post we will discuss about some Architectural changes in SharePoint 2013. Also you can check out my previous posts on:

- Create content type in SharePoint 2013

- Advantages of Apps in SharePoint 2013

- New Features of SharePoint 2013

- There are various improvements made towards database layer like advanced indexing feature implemented towards SQL Server 2008 R2 and SQL Server 2012. Also incorporate a new feature called shredded storage through which only the changed pieces are updated at the database layer. This reduces the impact caused by document updates.

Tuesday, May 21, 2013

Get list level content types using SharePoint 2010 client object model

In this post we will discuss about how to get list level content types using SharePoint 2010 client object model. Also you can check my previous posts on:

- Get all first level subsites under website in SharePoint 2010

- Tutorial on Microsoft Office 365

- Call jQuery to SharePoint page using Custom Action

To work with SharePoint 2010 client object model, we need to give reference to the below dlls:

Wednesday, May 15, 2013

Create document sets in SharePoint 2013

In this post we will discuss how to create document sets in SharePoint 2013. Also you can check Event Receivers in SharePoint 2010, Backup of Site collection in SharePoint 2010 and  Hide Ribbon from Read Access users in SharePoint 2010.

Open the site collection. Then from the top level of your site collection, select Site Settings from the Site Actions menu. The Site Settings page appears.

Under the Galleries group, select Site Content Types. The Site Content Types page appears listing all content types available within the site collection.

Saturday, May 11, 2013

Copy or Move files from one folder to another folder using SharePoint 2010 object model

In this article we will discuss about how to copy files from one folder to another folder using SharePoint 2010 object model.

Also you can check out my previous posts on: CAML designer for SharePoint 2013, custom timer job sharepoint 2010 and SharePoint 2010 Centered Fixed Width Design.

Copy files in SharePoint:

SPWeb mySite = SPContext.Current.Web;

SPFolder myFolder = mySite.GetFolder("MySourceFolder");

Tuesday, May 7, 2013

Get all first level subsites under website in SharePoint 2010

In this post we will discuss how to retrieve all first level sub sites under a site or site collection. Also you can check out my previous posts on Powershell command to install activate feature SharePoint 2010, SharePoint 2010 Interview Questions and Answers and Reindex feature in list and document library in SharePoint 2013.

We have to use the Webs property of SPWeb class to get the first level subsites of a specific website. Below is the full SharePoint 2010 object model code:

Friday, May 3, 2013

Retrieve all site collections inside web application in SharePoint

In this post we will discuss how to retrieve all site collections presented inside a web application.

Also you can check out my previous posts on Redirect user based on browser language in SharePoint 2010, Change page layout programmatically SharePoint 2010 and Get user profile using SharePoint 2013 object model.

Here we will use SharePoint 2010 server object model to retrieve site collection list.