클라이언트 모델로 SharePoint 데이터 액세스
5091 단어 SharePoint
프로그램에서 Microsoft를 참조합니다.SharePoint.Client 네임스페이스
1. 다음은 SharePoint 목록에 접근한 데이터입니다. 목록의 이름은 뉴스 목록이고 그 중에서
ClientContext ct = new ClientContext("http://moss:84");
NetworkCredential nw = CredentialCache.DefaultNetworkCredentials;
ct.Credentials = nw;
Microsoft.SharePoint.Client.Web web = ct.Web;
List lst = web.Lists.GetByTitle(" ");
CamlQuery camlQuery = new CamlQuery();
camlQuery.ViewXml = "<View/>";
Microsoft.SharePoint.Client.ListItemCollection lts = lst.GetItems(camlQuery);
FieldCollection flds = lst.Fields;
ct.Load(lst);
ct.Load(lts);
ct.Load(flds);
ct.ExecuteQuery();
// string fName = string.Empty;
//foreach (Field f in flds)
//{
// if (f.Title == " ")
// {
// fName = f.InternalName;
// break;
// }
//}
// SPFieldUrlValue , , URL, Description
//foreach (Microsoft.SharePoint.Client.ListItem lt in lts)
//{
//if (lt[fName]!=null)
//{
// FieldUrlValue fURL = new FieldUrlValue();
// fURL = (FieldUrlValue)lt[fName];
// Response.Write("ID:"+i.ToString()+",LID:"+lt.Id+","+fURL.Url);
// Response.Write("<br/>");
// i++;
//}
//Response.Write(lt[fName]);
//Response.Write("<br/>");
// }
Microsoft.SharePoint.Client.ListItem lt = lts[0];
foreach (Microsoft.SharePoint.Client.Field f in flds)
{
Response.Write("Field Name: "+f.Title+":Field InterName: "+f.InternalName);
Response.Write("<br/>");
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Excel에서 사이트의 목록 목록을 손쉽게 만들기Excel의 OData 연동 기능을 사용하면 비 프로그래밍 방식으로 SharePoint Online 목록을 쉽게 만들 수 있습니다. ※ SharePoint Server 2013, 2016에서도 갈 수 있습니다. 먼저...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.