1
我想使其非常簡單。我有一個新的,全新的asp.net C#web表單,後面的代碼顯示如下。C#從SharePoint 2013文檔庫中檢索文檔列表
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
}
我有一個SharePoint 2013網站,其文檔庫中包含幾個文檔,其中包含幾列元數據。
如何使它顯示在網頁上,指向每個文檔的鏈接以及來自庫中每個文檔的列的元數據。對於集成SharePoint和ASP.Net的任何工作,我都是超級新手。
請幫忙。
Andy