Click here to Skip to main content
15,881,172 members
Articles / Productivity Apps and Services / Sharepoint
Tip/Trick

SharePoint 2010 Groups and Users

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
17 Dec 2012CPOL1 min read 28K   2   3
The server object model for fetching groups and users.

Introduction

In this article we can explore the Server Object Model for dealing with Groups and Users inside SharePoint.

Our Aim

Our aim is to create a webpart that displays the users and groups in a SharePoint site.

For example:

Group 1

  • User 1
  • User 2

Group 2

  • User 3
  • User 4

The Solution

Create a new SharePoint solution and add a new webpart into it. Place a Literal control over it.

Image 1

Add using System.Text; 

In the Page Load event, add the following code: 

C#
protected void Page_Load(object sender, EventArgs e)
{
    if (!this.Page.IsPostBack)
        RefreshData();
}

private void RefreshData()
{
    StringBuilder sb = new StringBuilder("<h2>Groups & Users</h2></br>");

    foreach (SPGroup group in SPContext.Current.Web.Groups)
    {
        sb.Append("<b>Group: </b>" + group.Name + "</br>");
        foreach (SPUser user in group.Users)
        {
            sb.Append(user.Name + "</br>");
        }

        sb.Append("</br>");
    }

    Literal1.Text = sb.ToString();
}

What the Code Does

SPContext.Current.Web.Groups returns all the groups for the particular web object. We can enumerate this using a foreach statement.

Group.Users returns the users inside the particular group. The object is represented by the SPUser object model.

Running the Code

On running the project, and adding the web part to the page, you can see the following results:

Image 2

More Information on Groups and Users

I would like to add some related information from MSDN.

SPWeb.AllUsers

Gets the collection of user objects that represents all users who are either members of the site or who have browsed to the site as authenticated members of a domain group in the site.

SPWeb.Users

Gets the collection of user objects that are explicitly assigned permissions in the Web site.

Summary

In this article we have explored the server object model for fetching groups and users. The web part displaying groups and users is attached with the article.

References

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
United States United States
Jean Paul is a Microsoft MVP and Architect with 12+ years of experience. He is very much passionate in programming and his core skills are SharePoint, ASP.NET & C#.

In the academic side he do hold a BS in Computer Science & MBA. In the certification side he holds MCPD & MCTS spanning from .Net Fundamentals to SQL Server.

Most of the free time he will be doing technical activities like researching solutions, writing articles, resolving forum problems etc. He believes quality & satisfaction goes hand in hand.

You can find some of his work over here. He blogs at http://jeanpaulva.com

Comments and Discussions

 
QuestionThanks! and ... :-) Pin
renecschutte17-Dec-12 5:57
renecschutte17-Dec-12 5:57 
GeneralMy vote of 5 Pin
renecschutte17-Dec-12 5:53
renecschutte17-Dec-12 5:53 
GeneralRe: My vote of 5 Pin
Jean Paul V.A17-Dec-12 6:31
Jean Paul V.A17-Dec-12 6:31 
Thank You My Dear Friend for the good words..

I have added the System.Text as per your suggestion.
Jean.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.