Posts

Showing posts from August, 2012

List Definition with InfoPath 2010 List Form

http://ikarstein.wordpress.com/2011/04/02/walkthrough-deploying-a-infopath-2010-list-form-in-a-visual-studio-2010-solution-package/ This article shows how to create a List Form for SharePoint List using InfoPath 2010.

Create custom SharePoint 2010 list form for deployment in a Visual Studio 2010 project

Part-1: http://ikarstein.wordpress.com/2010/12/29/walkthrough-create-custom-sharepoint-2010-list-form-for-deployment-in-a-visual-studio-2010-project/ Part-2: http://ikarstein.wordpress.com/2011/01/24/walkthrough-create-custom-sharepoint-2010-list-form-for-deployment-in-a-visual-studio-2010-project-part-2/

SharePoint 2010 Out of Box Web Parts

I got this information from the blog  http://www.enjoysharepoint.com/Articles/Details/sharepoint-2010-out-of-box-web-parts-149.aspx SharePoint Server 2010 out-of-the-box Web parts, organized by categories. Not all of these Web parts are available to every site. List and Libraries : Announcements  — Use this list to track upcoming events, status updates or other team news. Calendar  — Use the Calendar list to keep informed of upcoming meetings, deadlines, and other important events. Links  — Use the Links list for links to Web pages that your team members will find interesting or useful. Shared Documents  — Share a document with the team by adding it to this document library. Site Assets  — Use this library to store files which are included on pages within this site, such as images on Wiki pages. Site Pages  — Use this library to create and store pages on this site. Tasks  — Use the Tasks list to keep track of work...

Switch from Classic to Claims Authentication in SharePoint 2010

SharePoint 2013 tutorials, SharePoint 2010 articles, SharePoint interview questions: Switch from Classic to Claims Authentication in Sh... : In this article we will discuss how to switch from Classic Mode Authentication to Claims Authentication. $webApp = Get-SPWebApplication “http://web application URL/” $webApp.UseClaimsAuthentication = 1 $webApp.Update() $webApp.ProvisionGlobally() $webApp.MigrateUsers($True)