如何检查当前用户是否具有 Sharepoint 2007 和 2010 中 Web 部件的编辑权限?

发布于 2024-11-30 21:06:16 字数 111 浏览 0 评论 0原文

我有一个网络部件。如果当前用户具有编辑权限,那么我必须在 Web 部件内容中显示一些信息。

如何检查当前用户是否具有 Sharepoint 2007 和 2010 中 Web 部件的编辑权限?

I have a webpart. If current user has edit permission then I have to display some information in webpart content.

How to check that current user has edit permission to a webpart in Sharepoint 2007 and 2010?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

与酒说心事 2024-12-07 21:06:16

尝试使用 SPWebPartManager.GetPermissions 方法,这应该让您知道用户是否有权编辑 Web 部件。可以在此处找到更多信息。

这是一个包含权限枚举的链接。此页面上还有一个链接来演示如何在 SharePoint 2007 中使用它

Try using the SPWebPartManager.GetPermissions method, this should let you know if a user has access to edit a web part. More info can be found here.

Here is a link with the enumerations of Permissions. There is also a link on this page to demonstrate how this is used in SharePoint 2007

山有枢 2024-12-07 21:06:16

嘿马特这是我的代码..

public Boolean HasEditPermission
        {
            get
            {   
                SPWebPartManager sPWebPartManager = (SPWebPartManager) SPWebPartManager.GetCurrentWebPartManager(Page);
                Permissions permissions = sPWebPartManager.GetPermissions(this);
                if (permissions == Microsoft.SharePoint.WebPartPages.Permissions.AllProperties)
                    return true;
                else
                    return false;
            }
        }

Hey Matt here is my code..

public Boolean HasEditPermission
        {
            get
            {   
                SPWebPartManager sPWebPartManager = (SPWebPartManager) SPWebPartManager.GetCurrentWebPartManager(Page);
                Permissions permissions = sPWebPartManager.GetPermissions(this);
                if (permissions == Microsoft.SharePoint.WebPartPages.Permissions.AllProperties)
                    return true;
                else
                    return false;
            }
        }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文