What is a list form

A list form refers to the forms used to display and manipulate data in SharePoint. A list form is used for one of three operations, that also name the forms, the Display form, the New form, and the Edit form. The screenshot below shows the New form of the tasks list in a SharePoint team site.

Read more on What is a list form…

Posted under FAQ

This post was written by furuknap on April 21, 2009

Tags: ,

How do I get access to the correct SPSite entity from a webpart

To get access to the correct SPSite entity from a webpart use the SPContext.Current where you have access to both the current site and web.

Posted under Developer

This post was written by furuknap on January 6, 2009

Tags: ,

Whats is a SharePoint group

A SharePoint group is a collection of usernames and group names that can be given permissions to a SharePoint site or parts of a SharePoint site. Groups are defined for the entire site collection, but can be given permissions on any child site of the site collection.

Read more on Whats is a SharePoint group…

Posted under Administration, FAQ

This post was written by furuknap on January 5, 2009

Tags: ,

What is Visual Studio extentions for WSS

Visual Studio extentions for WSS, or VSeWSS for short, is a toolkit developed by Microsoft for creating SharePoint functionality and features using Visual Studio. The toolkit is available for both Visual Studio 2005 and 2008.

Read more on What is Visual Studio extentions for WSS…

Posted under Developer, FAQ

This post was written by furuknap on January 4, 2009

Tags: ,

How do I find associated groups in code

To find associated groups in code you can either use the AssociatedGroups collection or access the individual groups as AssociatedOwnerGroup, AssociatedMemberGroup, or AssociatedVisitorGroup of an SPWeb object:

SPGroup owners = this.Web.AssociatedOwnerGroup;
SPGroup members = this.Web.AssociatedMemberGroup;
SPGroup visitors = this.Web.AssociatedVisitorGroup;

Read more on How do I find associated groups in code…

Posted under Developer

This post was written by furuknap on January 4, 2009

Tags:

What is an associated group in SharePoint

An associated group in SharePoint refers to the groups that are associated with the default roles in a SharePoint site. In SharePoint v3 these groups are Owners, Members, and Visitor. The groups are created by default when you create a new site collection. When you create a site inside an existing site collection the groups are created automatically if you select to not inherit permissions from the parent site.

Read more on What is an associated group in SharePoint…

Posted under Administration, Developer, FAQ

This post was written by furuknap on January 4, 2009

Tags: ,

How do I add a page to SharePoint using the web interface

To add a page to SharePoint using the web interface you go to the Create page of the site. Note that prior to adding a page your site must have at least one library to hold the page. On the Create page you go to the Web Pages column and select either the Basic page or the Web part page. Other pages may also be available.

Read more on How do I add a page to SharePoint using the web interface…

Posted under Administration, End user

This post was written by furuknap on January 4, 2009

Tags: ,

How do I add a link on the Create page

The only column to which you can add a link on the Create page is the Web Pages column. To add a link there, use a CustomAction feature with Location=”Microsoft.SharePoint.Create” and a GroupId=”WebPages”:

Read more on How do I add a link on the Create page…

Posted under Developer

This post was written by furuknap on January 3, 2009

Tags:

What is a portal

A portal is used as a front end interface to different areas of information such as news, people, projects, or other data.

See also: What is a SharePoint portal

Posted under FAQ

This post was written by furuknap on December 20, 2008

Tags:

What is a view

A SharePoint view is a display of data from a SharePoint list. A view determines both the data to be displayed and rendering of that data. Views can be created by the user or the list administrators.

Read more on What is a view…

Posted under FAQ

This post was written by furuknap on December 20, 2008

Tags: ,