使用client對象模型讀取SharePoint列表數據
阿新 • • 發佈:2017-06-25
lis content plist center rgs ext arp app inf
4. 雙擊兩個button,加入方法。首先是Exit:
使用client對象模型讀取SharePoint列表數據
client對象模型提供了強有力的方式。從遠程client應用程序管理列表。
1. 管理員身份打開VS,新建項目Windows窗口應用程序,命名ReadSPListData,確保選擇.NET Framework 3.5。
2. 加入控件。
控件類型:
3. 你必須加入一個類ProductInfo。
namespace ReadSPListData { class ProductInfo { public string productName { get; set; } public string productSKU { get; set; } public string productPrice { get; set; } } }
private void btnExit_Click(object sender, EventArgs e) { Application.Exit(); }5. 然後是Load。
首先要加入合適的引用。右擊項目。加入引用Microsoft.SharePoint.Client.dll和Microsoft.SharePoint.Client.Runtime.dll。並在代碼中加入using。
你可能會遇到命名空間沖突。加入例如以下代碼
using ClientOM = Microsoft.SharePoint.Client;
6. 加入Load代碼。
7. 執行截圖:
使用client對象模型讀取SharePoint列表數據