Tagged Questions
1
vote
3answers
723 views
SharePoint 2010 RunWithElevatedPrivileges() Throws Exception
I am trying to update a list item using:
SPSecurity.RunWithElevatedPrivileges(delegate()
{
...
item.update();**// this line works**
list.update();**//// exception thrown on this ...