- 博客(10)
- 收藏
- 关注
原创 SharePoint的SPFieldUserValueCollection.Add方法
做项目遇到需要动态给SPFieldUserValueCollection追加值,经过探索,方法如下:1. group转化成SPFieldUserValue: new SPFieldUserValue(web, Group.ID, Group.Name)2. 添加: 这里遇到一次问题:如果SPFieldUserValueCollection初始为空,直
2013-01-25 09:54:44 793
转载 SelectSingleNode方法中的xpath用法
最常见的XML数据类型有:Element, Attribute,Comment, Text. Element, 指形如Tom的节点。它可以包括:Element, Text, Comment, ProcessingInstruction, CDATA, and EntityReference.Attribute, 指在中的粗体部分。 Comment,指形如: 的节点。
2013-01-11 11:15:06 469
转载 Sharepoint ECMAScript对象模型系列 使用ECMA操作列表项对象(listitem)
首先需要在我们的Sharepoint网站上创建一个名为product的list,如下图:一、添加List Item--新增一个product(Add Product)input id="btnNewProduct" type="button" value="Add Product" onclick='addProduct("AsusLapTop4","Asus AX44
2012-11-22 10:15:25 1281
原创 CustomValidator的ClientValidationFunction不进方法
犯了个错误,CustomValidator的ClientValidationFunction总是不进方法。翻来覆去的才找到原因,因为ValidateEmptyText="true"这个没加,而我的输入框是可以为空的。 * <asp:CustomValidator ID="cvTxtDept" runat="se
2012-11-07 15:33:29 1038
原创 SharePoint 批量打包zip下载列表项ListItem附件
1. 下载DotNetZip(Ionic.zip.dll)2. 代码 protected void AllDown_Click(Object sender, EventArgs e) { int itemID; if (Request.QueryString["ItemID"] != null)
2012-11-05 15:48:23 2378
原创 SharePoint给ListItem赋予权限
protected void AddItemRole(int itemID) { SPSecurity.RunWithElevatedPrivileges(delegate()//提升权限 { using (SPSite site = new SPSite(SPContext.Current.S
2012-10-25 15:58:13 1074
转载 SharePoint中的富文本编辑器控件
SharePoint有很多好用的控件,如果我们自己开发WebPart,或开发部署到Layouts中的应用程序页面,可以直接来用这些系统控件。SharePoint中有两个富文本控件:InputFormTextBox和HtmlEditor,看下面一幅图片:上面那个就是InputFormTextBox,而下面的自然是HtmlEditor了。InputFormTextBox名称控件是Mic
2012-09-20 10:04:02 1353
原创 Sharepoint 使用 Office Web Apps 在线浏览器查看 PDF文件
Office Web Apps安装后默认可以通过浏览器查看word、excel、ppt、等,如果需要查看pdf文件,需要在管理中心设置: Web应用程序管理 - 管理Web应用程序 - 选择站点 - 点击常规设置,如下图:
2012-09-04 15:58:51 819
原创 sharepoint 根据添加的列表项给文档库创建文件夹
给列表添加eventHandler:using System;using System.Security.Permissions;using Microsoft.SharePoint;using Microsoft.SharePoint.Security;using Microsoft.SharePoint.Utilities;using Microsoft.SharePoint.W
2012-08-10 10:03:59 1279
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人