防止 SharePoint 列表项删除

发布于 2024-10-30 17:29:37 字数 69 浏览 0 评论 0原文

如何防止用户删除共享点任务列表项? 我应该覆盖 ItemDeleting 事件还是有任何其他站点级别选项可以实现相同的目的?

How can I prevent users from deleting sharepoint task list item?
Should i override the ItemDeleting event or is there any other site level options available to achieve the same?

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

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

发布评论

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

评论(2

花开雨落又逢春i 2024-11-06 17:29:37

您还可以设置开箱即用的自定义权限级别。

  1. 导航到您的网站集(如果您位于子网站中,您可以转到网站操作 -> 网站设置 -> 转到顶级网站设置
  2. )站点设置->高级权限
  3. 点击设置->权限级别
  4. 单击添加权限级别

我建议使用现有的“贡献”权限级别作为指导,然后取消选中“删除项目”列表权限。然后,您可以向用户授予该列表的权限。

You could also set up a custom permission level out of the box.

  1. Navigate to your Site Collection (if you're in a subsite, you can go to Site Actions -> Site Settings -> Go to top level site settings)
  2. Site Actions -> Site Settings -> Advanced permissions
  3. Click Settings -> Permission Levels
  4. Click Add a permission level

I would recommend using the existing "Contribute" permission level as a guide and just uncheck the "Delete Items" list permission. Then, you can give your users that permission to the list.

独自唱情﹋歌 2024-11-06 17:29:37

您可以使用列表项事件接收器、ItemDeleting 方法:

public override void ItemDeleting(SPItemEventProperties properties)
{
    properties.ErrorMessage = "User don't have permission";
    properties.Cancel = true;
}

You can use List Item Event Receiver, ItemDeleting method:

public override void ItemDeleting(SPItemEventProperties properties)
{
    properties.ErrorMessage = "User don't have permission";
    properties.Cancel = true;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文