第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

SharePoint 更新列表項(xiàng)

SharePoint 更新列表項(xiàng)

C#
江戶川亂折騰 2023-05-13 16:13:11
我正在嘗試更新 SharePoint 列表,我在 Internet 上找到了一個(gè)代碼示例(Microsoft 官方文檔)所以這是代碼:using System;using Microsoft.SharePoint.Client;using SP = Microsoft.SharePoint.Client;namespace Microsoft.SDK.SharePointServices.Samples{    class UpdateListItem    {        static void Main()        {               string siteUrl = "http://MyServer/sites/MySiteCollection";            ClientContext clientContext = new ClientContext(siteUrl);            SP.List oList = clientContext.Web.Lists.GetByTitle("Announcements");            ListItem oListItem = oList.Items.GetById(3);            oListItem["Title"] = "My Updated Title.";            oListItem.Update();            clientContext.ExecuteQuery();         }    }}如果我在 visual studio 中復(fù)制/粘貼此代碼,則此行會(huì)出現(xiàn)錯(cuò)誤:ListItem oListItem = oList.Items.GetById(3);List 不包含 Items 的定義,并且找不到可訪問的擴(kuò)展方法“接受類型為‘List’的第一個(gè)參數(shù)”知道我必須做什么才能使用此代碼嗎?
查看完整描述

1 回答

?
嚕嚕噠

TA貢獻(xiàn)1784條經(jīng)驗(yàn) 獲得超7個(gè)贊

您提供的用于更新列表項(xiàng)的代碼適用于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();


查看完整回答
反對 回復(fù) 2023-05-13
  • 1 回答
  • 0 關(guān)注
  • 191 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)