I have a requirement that I have to get the list item values in SharePoint list item updating event. In that I am getting list item properties( current properties ) and also updated values( after properties ), except the people picker value.
as that
string cuurentUser= properties.ListItem["User"].ToString();
( Result: "22;#RAMPINDIA/ventew")
string afterUser= properties.AfterProperties["PermissionLevel"].ToString(); (Result:"22")
as shown above I am just getting the ID only.
Can any one help me to find the way to find the entire name?