Pengaturcaraan Read Senarai & Paparan Kandungan dalam SharePoint

Saya mendapat tugas untuk berusaha membangunkan aplikasi tingkap yang akan mengambil Senarai Lihat data dari SharePoint dan memproses data dalam kemenangan membentuk aplikasi.

Sebelum i digunakan untuk mengambil data menggunakan Lists.asmx,views.asmx.

Sekarang saya mendapat tahu ada cara lain untuk mengambil data daripada Senarai Lihat.

Sintaksis:
https://myserver.com/_vti_bin/owssvr.dll?Cmd = Display&Senarai ={list Id}&View={View Id}&XMLDATA=true

Example URL:

https://myserver.com/_vti_bin/owssvr.dll?Cmd = Display&Senarai ={EA1BD05B-DB5B-434B-B2FC-B9AB9EE18A91}&View={B959F555% 2D798B% 2D4F47% 2D9FBB% 2D81513B85F906}&XMLDATA=true

Sekarang ia akan memberikan data xml sebagai tindak balas.

write the response to xmldoc and process the data.

HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(“https://myserver.com/_vti_bin/owssvr.dll?Cmd = Display&Senarai ={EA1BD05B-DB5B-434B-B2FC-B9AB9EE18A91}&View={B959F555% 2D798B% 2D4F47% 2D9FBB% 2D81513B85F906}&XMLDATA=true”);

myRequest.Credentials =
System.Net.CredentialCache.DefaultCredentials;
HttpWebResponse response = (HttpWebResponse)myRequest.GetResponse();
XmlDocument doc = XmlDocument baru();
doc.Load(response.GetResponseStream());

Tinggalkan Reply

Anda boleh menggunakan tag HTML ini

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>