09 2008 档案
无限期的MOSS WebPart: Document Library Explorer KEY
摘要:快到5一了顺便送个霸道的key,无期限,不过好像中文支持的不是很好,而且不支持AJAX特效, Document Library Explorer 把注册key换成如下就可以了! 借助ComponentArt UI 自己写了个Explorer,完全支持AJAX效果,采用WebService Cache方式,轻松支持百万级别的异步数据加载,不过这里是MOSS中的文档了。。... 阅读全文
posted @ 2008-09-28 12:25 volitation 阅读(248) 评论(0) 推荐(0)
MOSS RTE的使用
摘要:当我们自己在_layouts下或者MOSS的应用程序池里的项目想使用MOSS自带的RichText Editor控件: 其实用户很简单,2步搞定: 复制脚本 Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--... 阅读全文
posted @ 2008-09-28 12:21 volitation 阅读(210) 评论(0) 推荐(0)
MOSS中对列表的又一些操作
摘要:MOSS中对列表的一些操作(创建,查询等) 1.查询列表的所有字段 SPSite site = new SPSite("http://carysun"); SPWeb web=site.OpenWeb(); SPList list = web.GetList("/IT Infrastructure"); foreach (SPField sf in list.Fields) { Cons... 阅读全文
posted @ 2008-09-28 12:17 volitation 阅读(212) 评论(0) 推荐(0)
MOSS LIST的一些属性
摘要:命名空间:Microsoft.SharePoint SPSite 功能: Represents a collection of sites on a virtual server, including a top-level site and all its subsites. 代表一个虚拟服务器的网站集合,包含一个顶集网站和他的所有子站点Windows ShareP... 阅读全文
posted @ 2008-09-28 12:15 volitation 阅读(244) 评论(0) 推荐(0)
SharePoint Web Services 详细(转)
摘要:SharePoint通过一系列Web Services来支持互操作和远程调用,这里的SharePoint,我指的是WSS 3.0(Windows SharePoint Services)和MOSS 2007(Microsoft Office SharePoint Server)。有好几种方法来编程访问SharePoint,比如对象模型、Web Services、RPC over HTTP、以及W... 阅读全文
posted @ 2008-09-28 12:13 volitation 阅读(213) 评论(0) 推荐(0)
MOSS对象模型之:SPList(转)
摘要:首先让我们看看MOSS2007整个对象模型架构 从最内层开始出发 SPListItem 创建Item,这里需要注意的一点是这里的name参数需要用internal names Code Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--... 阅读全文
posted @ 2008-09-28 12:11 volitation 阅读(345) 评论(0) 推荐(0)
sharepoint之-使用DataView与Form Web Part实现列表的关键字查询(转)
摘要:有以下一个列表: 用SharePoint Designer打开新创建的Web 部件页“View.aspx”页面,把以上列表拖入Web Part区域中即可插入一个Data View(数据视图): 编辑列,设置显示列为“标题”,“描述”,“来源” 选择上图“常用Data View任务”的“参数”,新建建一个“表单”参数“Keyword”: 选择上图“常用Data View任务”的“筛选”... 阅读全文
posted @ 2008-09-28 12:08 volitation 阅读(183) 评论(0) 推荐(0)
在SharePoint中对文档库(列表)进行的一些操作(转)
摘要:using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebContr... 阅读全文
posted @ 2008-09-28 12:05 volitation 阅读(463) 评论(0) 推荐(0)
对sharepoint 列表的基本操作,包括添加/删除/查询/上传文件(转)
摘要:// ============================================ SPWeb site = SPControl.GetContextWeb(Context); SPListItemCollection items = site.Lists["ListName"].Items; SPListItem item = ite... 阅读全文
posted @ 2008-09-28 12:04 volitation 阅读(179) 评论(0) 推荐(0)