摘要: 1.后台代码 protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { RefreshViewer(1); } } private void RefreshViewer(int NewIndex) { var ps = DbEntry .From<User>() ... 阅读全文
posted @ 2012-01-30 19:31 gzh4455 阅读(382) 评论(0) 推荐(0) 编辑
摘要: 在用客户端模型访问SharePoint数据首先要添加两个引用,一个是Microsoft.SharePoint.Client,另一个是Microsoft.SharePoint.Client.Runtime在程序要引用Microsoft.SharePoint.Client命名空间1.下面是一个简单的例子访问SharePoint列表的数据,读取的是列表名称为新闻列表,其中 ClientContext ct = new ClientContext("http://moss:84"); NetworkCredential nw = CredentialCache.Defau... 阅读全文
posted @ 2012-01-30 09:28 gzh4455 阅读(560) 评论(0) 推荐(0) 编辑
摘要: 1. 下面是用AspNetPage来分页的,主要在网站在有一个列表名称为新闻列表,BindGridView是一个分页的函数。 下面的主要是对一个列表的查询进行的分页。 后台代码 EntityList<新闻列表项目> newsList; public const int PageSize = 10; protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { BindGridView(... 阅读全文
posted @ 2012-01-30 09:19 gzh4455 阅读(1141) 评论(1) 推荐(0) 编辑