4

正如标题所说,我可以访问当前列表项 - 并且很容易获得作者/按名称创建 - 但是如何从对象模型中检索 C# 中作者的电子邮件地址?

谢谢。

4

1 回答 1

9

您可以从SPFieldUserValue对象获取SPUser :

SPFieldUserValue userValue = 
    new SPFieldUserValue(web, item[SPBuiltInFieldId.Author].ToString());
SPUser user = userValue.User;
string email = user.Email;
于 2012-07-02T17:45:56.220 回答