使用提升的权限更新 Sharepoint 列表
在 Web 部件中,没有任何权限的用户需要读取和更新 Sharepoint 列表。
提升权限可以正常读取列表,但是当我尝试更新同一列表时,会抛出异常。如何使用提升的权限更新列表?
SPSecurity.RunWithElevatedPrivileges(delegate()
{
SPSite oSite = SPControl.GetContextSite(HttpContext.Current);
SPWeb oWeb = oSite.OpenWeb();
oWeb.AllowUnsafeUpdates = true;
SPListItemCollection listItems = oWeb.Lists["nameList"].Items;
SPListItem item = listItems.Add();
...
item.Update(); // Throws Exception
});
In a Webpart a user without any privileges needs to read and update a Sharepoint list.
Elevating privileges works ok for reading the list, but when I try to update the same list, throws a Exception. How is it possible to update a list with elevated privileges?
SPSecurity.RunWithElevatedPrivileges(delegate()
{
SPSite oSite = SPControl.GetContextSite(HttpContext.Current);
SPWeb oWeb = oSite.OpenWeb();
oWeb.AllowUnsafeUpdates = true;
SPListItemCollection listItems = oWeb.Lists["nameList"].Items;
SPListItem item = listItems.Add();
...
item.Update(); // Throws Exception
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
提升的权限用于添加编辑和删除所有操作,因此一定是其他问题,请提供异常详细信息
elevated privilages is used to add edit and delete all operations so thier must be some other problem kindly provide the exception details
问题在于 SPSite 的创建。
正确的代码:
The problem was the creation of the SPSite.
The correct code: