摘要: stsadm -o Export -url http://ServerName/SiteName -filename D:\ExportFilename stsadm -o Import -url http://DestinateName/SiteName -filename D:\ExportFilename 阅读全文
posted @ 2009-03-06 14:25 邑尘 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 1.Geq(>=) The Geq element is an arithmetic operator that means "greater than or equal to." It can be used within a Where element in a view definition. ... 阅读全文
posted @ 2009-03-06 13:05 邑尘 阅读(312) 评论(0) 推荐(0) 编辑
摘要: DotNetZip 是一个短小易用的用来操作 zip 文件的 .NET 类库,支持.NET的任何语言,可很方便的创建,读取,和更新zip文件。而且还可以使用在.NETCompact Framework中。 下面是一些简单的例子: 1.加密压缩:using (ZipFile zip = new ZipFile()) { zip.Password = sPassword; //set pwd zip.... 阅读全文
posted @ 2009-03-06 09:11 邑尘 阅读(445) 评论(0) 推荐(0) 编辑
摘要: 需求: 希望一个sharepoint网站,有多个网址去访问。例如:http://moss:8080/的网站,http://aphla.prismshareusa.int/ 和 http://aphla.carat.int/ 两个网站同时访问。 解决方法如下: 1)创建DNS URL 打开DNS 服务器: 1)click"Start->All Pro... 阅读全文
posted @ 2009-03-06 08:59 邑尘 阅读(392) 评论(0) 推荐(0) 编辑
摘要: 转自http://www.cnblogs.com/DongJie1982/archive/2008/06/30.html 当用stsadm.exe 工具 backup 一个网站集然后 restore到其他Application 上,Event Log里面经常出现下列错误: Event Type: Error Event Source: Office SharePoint Server Event... 阅读全文
posted @ 2009-03-03 08:49 邑尘 阅读(930) 评论(0) 推荐(0) 编辑
摘要: IIS压缩并不是一项新技术,但对于SharePoint站点而言,IIS压缩能起到很大的作用。在IIS服务器上启用IIS压缩功能之后,在IIS服务器把页面内容发送给浏览器之前,会在服务器上先把内容进行压缩,然后发送压缩后的数据,浏览器接收到数据后,会自动进行解压,然后显示。由于在网络上传输的数据被压缩了,所以可以将页面内容更快的传送到浏览器,提高页面浏览速度。 虽然IIS服务器上对页面内容进行压缩... 阅读全文
posted @ 2009-03-02 10:00 邑尘 阅读(1021) 评论(2) 推荐(0) 编辑
摘要: 配置基于磁盘的缓存设置 适用于: Microsoft Office SharePoint Server 2007 基于磁盘的缓存是您可对存储在 Web 应用程序数据库中的内容进行更快处理的一种方式。如果您的 Web 应用程序包含诸如图像和多媒体文件等大型文件,则启用基于磁盘的缓存可以缩短页面传递时间,因为该缓存能够将文件存储在前端 Web 服务器上,从而减少数据库流量。 您可以在要应用... 阅读全文
posted @ 2009-02-26 11:12 邑尘 阅读(233) 评论(0) 推荐(0) 编辑
摘要: Like alot of people in the SharePoint development community I have been using a VPC to do debugging of code through SharePoint. I don't really like this because for one, running an enterprise level ap... 阅读全文
posted @ 2009-02-25 20:17 邑尘 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 方法1, 使用Response.Write,这种方法会把JS代码写在页面的最顶部(的前面): System.Web.HttpContext.Current.Response.Write(""); 方法2, 使用RegisterStartupScript,这种方法会把JS代码嵌入在页面的底部、表单的最后 (前面),适用于要在页面控件加载完成后运行的JS代码 : System.Web.UI.Page ... 阅读全文
posted @ 2009-02-23 13:49 邑尘 阅读(248) 评论(0) 推荐(0) 编辑
摘要: cd /d "C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\Resources" copy avm.resx avm.en-US.resx copy compproc.resx compproc.en-US.resx copy ep.resx ep.en-US.resx copy er.resx ... 阅读全文
posted @ 2009-02-23 10:51 邑尘 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 一列表要导到另一个site中,但大于10M,没办法存为模板出来,google了一下,发现这方法, 给大家共享之. 最大也只能500M。 原文 Saving a list as a template is an easy way of transferring data from one place to another in SharePoint. By default, however, t... 阅读全文
posted @ 2009-02-18 14:47 邑尘 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 当我爬网的时候,出现这样的错误 Value was either too large or too small for a UInt32. at System.Convert.ToUInt32(Double value) at Microsoft.SharePoint.ApplicationPages.SPListInfo.get_ItemCount() at Mi... 阅读全文
posted @ 2009-02-18 10:28 邑尘 阅读(1760) 评论(0) 推荐(0) 编辑
摘要: An error occured while rendering navigation for requested url,Feature"xxx" for list template "xxx" is not installed in this farm. 该错误是因为将安装过核心模板ApplicationTemplateCore.wsp的站点restore到没有安装过核心模板的机器上的原因。 ... 阅读全文
posted @ 2009-02-16 10:21 邑尘 阅读(564) 评论(0) 推荐(0) 编辑
摘要: 简单来说是因为拓展的属性名出现了重复,在出现重复的情况下,会以字段的Guid的形势展现。 解决办法: 不要使用和字段中相同名称的哈希表字段。 在无法使用ExtendedProperties[“Name”]得到数据的时候,使用ExtendedProperties["FieldGuid"]来得到数据。 Just like to say a big thanks to Andrew... 阅读全文
posted @ 2009-02-15 00:20 邑尘 阅读(825) 评论(0) 推荐(0) 编辑
摘要: 方法1:CMD命令中,进入C:\windows\assembly,然后XCOPY GAC_MSIL c:\temp /E这样就得到了dlls了,以命名空间来分类。如果想将dlls从集合中分出来,使用XCOPY GAC c:\temp /E方法2:运行中输入: C:\WINDOWS\ASSEMBLY\GAC_MSIL 即可打开GAC的正常展示目录方法3:Subst b: %windir%\assembly执行完后,会发现硬盘分区多了个B盘,打开后看到了所有assembly下的DLL,于是在这里就搜到了Microsoft.ReportViewer.ProcessingObjectModel.d.. 阅读全文
posted @ 2009-02-15 00:15 邑尘 阅读(1785) 评论(0) 推荐(0) 编辑
摘要: ISSUE : SMTP Configuration - Unspecified Error A new SMTP related issue has been brought to our notice and we are currently working on fixing it. This post provides information about an issue under in... 阅读全文
posted @ 2009-02-15 00:05 邑尘 阅读(422) 评论(0) 推荐(0) 编辑
摘要: Thanks to Bryant Duke for this one: http://forums.microsoft.com/technet/showpost.aspx?postid=1964290&siteid=17&sb=0&d=1&at=7&ft=11&tf=0&pageid=1 I finally found the underlying problem with email bei... 阅读全文
posted @ 2009-02-15 00:01 邑尘 阅读(597) 评论(0) 推荐(0) 编辑
摘要: Bonjour, I just figured how to use a resx file in my workflow aspx task form. I needed to style my aspx task form with XSLT and I just hard coded it in the page knowing that I would come back to it ... 阅读全文
posted @ 2009-02-14 23:57 邑尘 阅读(512) 评论(0) 推荐(0) 编辑
摘要: 在开发工作流的时候,碰到大量的低级问题,浪费了大量的时间,在这里记录下来备查。 很多时候有些莫名其妙的问题,比如工作流无法断点调试(包含其他ASPX),新工作流无法应用等,这时候都是IIS对.net的缓存没有更新的问题。解决办法是,删除C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files 中的文件 ... 阅读全文
posted @ 2009-02-14 23:44 邑尘 阅读(215) 评论(0) 推荐(0) 编辑
摘要: stringstr1 =string.Format("{0:N1}",56789); //result: 56,789.0 stringstr2 =string.Format("{0:N2}",56789); //result: 56,789.00 stringstr3 =string.Format("{0:N3}",56789); ... 阅读全文
posted @ 2009-02-13 22:30 邑尘 阅读(211) 评论(0) 推荐(0) 编辑
摘要: IIS 内幕 Internet Information Services 有问必答 获取关于Internet Information Services问题的答案. 本页内容 2006 年 2005 年 ... 阅读全文
posted @ 2009-02-13 11:26 邑尘 阅读(299) 评论(0) 推荐(0) 编辑
摘要: Error in commiting pending workflow batch items: System.InvalidOperationException: 工作流的事件接收器上下文无效。 System.InvalidOperationException: The event receiver context for Workflow is invalid 这是由于在创建Task的时候... 阅读全文
posted @ 2009-02-11 20:47 邑尘 阅读(400) 评论(0) 推荐(0) 编辑
摘要: 目录 获得List 初始上传,还没有Check In过的File删除 SPListCollection转Datatable Folder类型添加自定义属性 多行文本取出换行 识别为垃圾邮件 使用MOSS自带的方法发送email .net方式发送email 更新审批状态 string转Guid Con 阅读全文
posted @ 2008-12-29 14:20 邑尘 阅读(2024) 评论(1) 推荐(0) 编辑
摘要: 在做工作流的时候,碰到这个问题。 查了2天,也看了老柴博客上的文章,明白是因为自己的类无法被序列化的问题。但是将自己的类给排除掉,还是有这样的问题。 经过一个一个变量的查找,发现是因为自己的图省事,将web和site申明为了类级别的变量,取消掉该变量,问题解决。 另:有些类型不支持序列化,大家可以查查。 再另:某些私有化的变量无法被序列化,需要显示的标记它为无需序列化。 Private ... 阅读全文
posted @ 2008-11-27 10:19 邑尘 阅读(1073) 评论(0) 推荐(0) 编辑
摘要: 如何将用户的个人信息,如部门,显示在页面上呢? 使用SPD打开页面,可以是母版页和布局页面。 1.引入DLL 2.引用Profile Property Loader 3.在具体的需要放的位置放上具体的属性,如:部门 Department可以换成其他的属性,如“PreferredName”是显示名。 另 是放个人图片的。 阅读全文
posted @ 2008-11-04 10:50 邑尘 阅读(440) 评论(0) 推荐(0) 编辑
摘要: 在修复安装sharpoint的时候,出现该错误,按MSDN的检查,没有发现问题。重新安装SQL2005的时候,发现原来是SQL的问题,需要修复一下WMI,同时伴随着SQL安装自检不通过。使用脚本修复下即可。 @echo on cd /d c:\temp if not exist %windir%\system32\wbem goto TryInstall cd /d %... 阅读全文
posted @ 2008-09-11 15:24 邑尘 阅读(519) 评论(0) 推荐(0) 编辑
摘要: 今天在将SSP中的用户导入到web的时候,碰到The user does not exist or is not unique错误,与管理员联系后发现该用户已经被删除。遂以为是我同步周期问题,重新完全导入了下用户,问题依旧。该User依旧存在。 网上查了下,如果是Form认证是需要MemberShip的(http://forums.msdn.microsoft.com/en-U... 阅读全文
posted @ 2008-08-29 15:25 邑尘 阅读(659) 评论(0) 推荐(0) 编辑
摘要: 经常会出现标题中的错误,很多时候不知道是否是安全的更新,即使使用了web.AllowUnsafeUpdates=true;依旧会出现,原来有些是需要使用到site和Application的。所以我现在直接进Application中将Central Administration--->application management---->web application settings--... 阅读全文
posted @ 2008-08-22 11:16 邑尘 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 建立辅助数据源,选择sharepoint列表或者文档库,选择到相应的list,选择相应的列。 双击infopath中的下拉框--列表框选项---选择从外部数据源查找值---数据源选择建立的数据源。 然后设置下项、显示值和显示名称即可。 同样的,可以链接到XML、SQL和webservice。 阅读全文
posted @ 2008-07-24 16:10 邑尘 阅读(323) 评论(0) 推荐(0) 编辑
摘要: 最近在做工作流的时候,将infopath发布到SharePoint的时候,经常出现“服务器上无法使用XSN的问题”,经过检查是因为Contact Selector的辅助数据源的SiteUrl属性没有填写的缘故。 另,在发布Infopath之前,可以预览下,预览成功了再发布。 Infopath不熟悉,浪费很多时间。 阅读全文
posted @ 2008-07-14 15:14 邑尘 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 在SharePoint模拟指定用户身份进行操作的代码: string siteUrl = "http://ecpe-dev:82/sites/sjs" ; //首先用管理员身份去到某个用户的Token,必须,非管理员无法模拟 SPSite site = new SPSite(siteUrl); //此时用户... 阅读全文
posted @ 2008-07-09 08:26 邑尘 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 今天碰到这样的问题,普通用户登陆时需要多次输入用户名密码,取消后进入发现无法查看CSS。 解决办法: 将C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\LAYOUTS\1033文件夹添加上WSS_ADMIN_WPG和WSS_WPG这2个组的访问权限即可。 阅读全文
posted @ 2008-07-08 13:41 邑尘 阅读(214) 评论(0) 推荐(0) 编辑