Hello ,
Question is how to get People Editor Values in Sharepoint, C# ?

Hi,

You can try to use PickerEntity object to retrieve the values from PeopleEditor control.

For example, To get the Email Address use PickerEntity object to retrieve the values from PeopleEditor control.

PickerEntity pckEntity = (PickerEntity)peResponsible.ResolvedEntities[0];
//Here peResponsible is a PeopleEditor Control

string email = pckEntity.EntityData["Email"].ToString();

Reference: PeopleEditor Class. Refer the content under 'Get e-mail address from PeopleEditor PickerEntity' in Community Content section.

Set value in People Editor control

PeopleEditor Control

How to Use the PeopleEditor Control: Saving Data

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.