Home > MOSS 2007 > Getting user login from the PeopleEditor via Code

Getting user login from the PeopleEditor via Code

October 4th, 2007 Leave a comment Go to comments

Assuming you have a people editor control defined like below:

<wssawc:PeopleEditor AllowEmpty=”false”  ID=”myPeopleEditorControl” runat=server SelectionSet=”User” MaximumEntities=”1″ MultiSelect=”false” AllowTypeIn=”false” Width=’500px’ />

The following code sample will get you the currently logged on user’s login from the PeopleEditor control:

  ArrayList peEntities = myPeopleEditorControl.Entities;
  PickerEntity pickEn = (PickerEntity)peEntities[0];
  stringLogIn = pickEn.Key;

This comes handy when you want to create an SPUser context out of the entities kept in the PeopleEditor control. For example:

 private SPUser GetUser(string logIn)

        {
             SPUser user = this.workflowProperties.Web.SiteUsers[logIn];
             return user;
        }

Don’t forget Required Field Validation on your people editor control if you want the code not to break on you.

Categories: MOSS 2007 Tags:
  1. Juan
    December 16th, 2010 at 10:16 | #1

    The code above did not work for me at least ‘as is’. Changing myPeopleEditorControl.Entities for myPeopleEditorControl.ResolvedEntities worked like magic though. I use FBA.

You must be logged in to post a comment.