摘要:
1.删除无法设定断点项目文件夹下的obj目录,删除C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\对应解决方案的文件夹2.删除所有原始引用的dll,然后再引用现在新路径的dll3.重新生成解决方案 阅读全文
摘要:
SPS中计算值公式函数简介 Conditional formulas You can use the following formulas to test the condition of a statement and return a Yes or No value, to test an alternate value such as OK or Not OK, or to return a blank or dash to represent a null value.Determine whether a number is greater than or less than ano 阅读全文
摘要:
Backup Exec Remote Agent 在远程服务器上启动时挂起,远程服务器上的系统事件日志列出事件 ID:7022,描述为:The Backup Exec Remote Agent for Windows Servers service hung on starting.(Backup Exec Remote Agent for Windows Servers 服务在启动时挂起。)本文... 阅读全文
摘要:
这个是我在国外的一个网站找打的,原文地址,Maximum File Size for Crawling具体的修改办法如下: Maximum File Size for CrawlingBy default, Search Servicescan crawl and filter a file with a size of up to 16 megabytes (MB). It will alw... 阅读全文
摘要:
In this article we will see how to implement client side validation in SharePoint list with out using SharePoint designer.For this follow the below steps找到需要有效性验证的页面,如NewForm.aspx或者EditForm.aspx在URL后面... 阅读全文
摘要:
自定义一个字段,该字段用Icon图片形式来显示各个Item的状态,效果如图所示:由于该字段是根据List中的一个Status字段来展示的,所以字段的代码如下:字段代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--<FieldType="Com... 阅读全文
摘要:
使用SPD新建一个母版页,复制<%-- Identifies this page as a .master page written in C# and registers tag prefixes, namespaces, assemblies, and controls. --%><%@ Master language="C#" %><!DOCTYPE html ... 阅读全文
摘要:
SPRecycleBinItemCollection binItems = site.GetRecycleBinItems(query);
var filteredItems = from i in binItems.OfType()
where i.ItemType == SPRecycleBinItemType.File && i.Title.Contains("YYY") && i.DeletedBy.LoginName == "basesmcdev2\\steve.curran"
select i; 阅读全文
摘要:
DECLARE @CurrFunName NVARCHAR(100)
DECLARE myCursorKPI2 CURSOR
FOR SELECT Name FROM FunctionList
OPEN myCursorKPI2
FETCH NEXT FROM myCursorKPI2 INTO @CurrFunName
WHILE @@FETCH_STATUS = 0 --返回被 FETCH 语句执行的最后游标的状态,而不是任何当前被连接打开的游标的状态。
BEGIN
BEGIN
PRINT @CurrFunName
EXEC ComputeKPIPointByFunYearMon @CurrFunName,@Year,@Month
END
FETCH NEXT FROM myCursorKPI2 INTO @CurrFunName
END 阅读全文
摘要:
The CMS features that were rolled into SharePoint have their fair share of issues. Working with one of my recent customers, we found a number of errors in the ULS logs in their farm. The follow errors... 阅读全文