摘要: 今天写了一个窗体应用程序,以访问SharePoint站点中的列表内容。代码如下:using (NewsDataContext data = new NewsDataContext("http://localhost/sites/news/PressReleases")) { // Get the SharePoint list EntityList<新闻列表Item> newslist = data.GetList<新闻列表Item>("新闻列表"); if (newslist != null) { var item = from 阅读全文
posted @ 2011-08-18 17:12 Will-SharePoint 阅读(259) 评论(0) 推荐(0) 编辑