How to get the username from a SPListItem or a SPFieldUser
If you need to get the SPUser object from a SPListItem or from a SPFieldUser you can use the following static method: public static SPUser GetSPUser(SPListItem item, string key) { SPFieldUser field = item.Fields[key] as SPFieldUser; if( field != null)… Continue Reading