নথিপত্র

Programmatically পড়ুন তালিকা & SharePoint মধ্যে দেখুন বিষয়বস্তু

আমি SharePoint থেকে তালিকা দেখুন তথ্য আনা এবং জয় অ্যাপ্লিকেশন ফর্ম তথ্য ব্যবস্থাপনা করা হবে, যা উইন্ডোজ অ্যাপ্লিকেশন উন্নয়নশীল কাজ করার জন্য একটি টাস্ক আছে.

পূর্বে আমি Lists.asmx ব্যবহার করে তথ্য সংগ্রহ করার জন্য ব্যবহৃত,views.asmx.

এখন আমি তালিকা দেখুন থেকে তথ্য সংগ্রহ করার অন্য উপায় আছে জানতে এসেছিলেন.

সিনট্যাক্স:
HTTPS://myserver.com/_vti_bin/owssvr.dll?Cmd = প্রদর্শন&তালিকা ={list Id}&View={View Id}&XMLDATA=true

Example URL:

HTTPS://myserver.com/_vti_bin/owssvr.dll?Cmd = প্রদর্শন&তালিকা ={EA1BD05B-DB5B-434B-B2FC-B9AB9EE18A91}&View={B959F555-798B-4F47-9FBB-81513B85F906}&XMLDATA=true

Now it will give the xml data as response.

write the response to xmldoc and process the data.

HttpWebRequest myRequest = (HttpWebRequest)WebRequest.Create(“HTTPS://myserver.com/_vti_bin/owssvr.dll?Cmd = প্রদর্শন&তালিকা ={EA1BD05B-DB5B-434B-B2FC-B9AB9EE18A91}&View={B959F555-798B-4F47-9FBB-81513B85F906}&XMLDATA=true”);

myRequest.Credentials =
System.Net.CredentialCache.DefaultCredentials;
HttpWebResponse response = (HttpWebResponse)myRequest.GetResponse();
XmlDocument ডক = নতুন XmlDocument();
doc.Load(response.GetResponseStream());

একটি উত্তর ত্যাগ

আপনি ব্যবহার করতে পারেন এই HTML ট্যাগ

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