1 回答

TA贡献1784条经验 获得超7个赞
您提供的用于更新列表项的代码适用于SharePoint 2010. 对于较新的版本尝试
ListItem oListItem = oList.GetItemById(3);
// Starting with ClientContext, the constructor requires a URL to the
// server running SharePoint.
ClientContext context = new ClientContext("http://SiteUrl");
// Assume that the web has a list named "Announcements".
List announcementsList = context.Web.Lists.GetByTitle("Announcements");
// Assume there is a list item with ID=1.
ListItem listItem = announcementsList.GetItemById(1);
// Write a new value to the Body field of the Announcement item.
listItem["Body"] = "This is my new value!!";
listItem.Update();
context.ExecuteQuery();
- 1 回答
- 0 关注
- 194 浏览
添加回答
举报