在 ASPX 页面(ASP.NET 站点)上的网格内显示共享点列表中的内容
场景:有一个 ASP.NET 站点,服务器也有 sharepoint 2010 基础。它有几个列表。 在 ASP.NET 站点中,其中一个 ASPX 页面有一个链接。单击此链接后,我应该从共享点列表中读取内容并在 ASPX 页面中以网格格式显示内容。
网格的列类似于 ItemID、ItemImage、ItemHyperlink、ItemDescription。
谁能建议任何代码示例或代码?
谢谢。
Scenario : There is an ASP.NET site and the server also has sharepoint 2010 foundation. It has couple of lists.
Within the ASP.NET site one of the ASPX page has a link. Upon clicking on this link I should read from sharepoint list and display the contents in a grid format within ASPX page.
Columns of grid will be something like ItemID, ItemImage, ItemHyperlink, ItemDescription.
Can anyone suggest any code samples or code?
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用开放数据协议或 OData 从 SharePoint 检索数据。 OData 是一种基于 Web 技术(包括 XML、Atom、JSON)创建的 Web 协议。因此,您可以使用 OData 以 Atom 条目的形式从 SharePoint 检索信息。您可以从 msdn 博客查看以下 ling。
http://blogs.msdn.com/b/astoriateam/archive/2009/10/21/using-data-services-over-sharepoint-2010-part-1-getting-started.aspx< /a>
希望这有帮助。
You can use The Open Data Protocol or OData to retrieve data from your SharePoint. OData is a Web Protocol created on top of Web technologies incluiding XML,Atom,JSON. So you can retrieve the information from your SharePoint using OData in form of Atom entries. You can take a look at the following ling from msdn blog.
http://blogs.msdn.com/b/astoriateam/archive/2009/10/21/using-data-services-over-sharepoint-2010-part-1-getting-started.aspx
Hope this helps.