SharePoint 2013测试登录用户

时间:2013-10-23 20:34:15

标签: c# authentication sharepoint sharepoint-2013

我在SharePoint 2013中开发了一个WebPart,我必须创建一个名为IsLoggedInUser()的函数 如果登录用户是匿名的,则返回false,否则返回true。

有人可以帮助我吗?

1 个答案:

答案 0 :(得分:1)

if (SPContext.Current.Web.CurrentUser != null)
    return true;