摘要:
直接用CAML语句查询Sharepoint有时候条件多比较麻烦,所以想到先用CAML查询出来一个对象,然后用LINQ来对对象再次操作例如,先取一个SPLIST对象 ,然后用CAML对LIST查询操作SPListlist=web.Lists[newGuid(listid)];SPQueryquery=newSPQuery();query.Query=@"<query></query>";varlistdataall=list.GetItems(query);//得到一个List数据对象varlistdatanew = from SPListItem i 阅读全文
摘要:
一、WSS_Content后端内容数据库存储所有网站内容,包括网站的文档或文档库中的文件,列表数据和Web部件属性,以及用户名和权限。为特定网站的所有数据的内容数据库。二、SharePoint_Config配置数据库句柄的所有管理部署,请求定向到相应的数据库和管理后端数据库的负载平衡。在前端Web服务器接收到请求的页在一个特定网站时,它检查配置数据库,以确定哪些内容数据库包含站点的数据。您可以配置数据库运行在同一台计算机作为Web服务器或远程计算机上运行MicrosoftSQL服务器。配置数据库概念相对不变,在微软sharepointserver2010。在MicrosoftOfficesha 阅读全文
摘要:
function AmountInWords(dValue, maxDec) { // 验证输入金额数值或数值字符串: dValue = dValue.toString().replace(/,/g, ""); dValue = dValue.replace(/^0+/, ""); // 金额数值转字符、移除逗号、移除前导零 if (dValue == "") { return "零元整"; } // (错误:金额为空!) else if (isNaN(dValue)) { return '<asp: 阅读全文
摘要:
aspx页面 调用:<asp:Literal ID="Literal1" runat="server" Text="<%$Languages,_Custom_MoreLanguagesSetting_Title%>" />C#页面调用 :HttpContext.GetGlobalResourceObject("Languages", "_Custom_MoreLanguagesSetting_Title", CultureInfo.CurrentCulture).ToSt 阅读全文
摘要:
public static void WriteLine(string format) { System.IO.FileStream fs = new System.IO.FileStream(("C:\\res\\log.txt"), System.IO.FileMode.Append); System.IO.StreamWriter streamWriter = new System.IO.StreamWriter(fs); streamWriter.BaseStream.Seek(0, System.IO.SeekOrigin.End); streamWriter.W 阅读全文
摘要:
using (SPSite site = new SPSite(approver.ParentTask.WFContext.Web.Site.ID)) { using (SPWeb currentWeb = site.OpenWeb(approver.ParentTask.WFContext.Web.ID)) {SPList currentlist = currentWeb.Lists[this.ListID]; SPListItem superItem = currentlist.Items.GetItemById(this.ItemID); SPRoleAssignmentCollec.. 阅读全文
摘要:
sql 语句 如何把 一列的10行,合并成一行查询出来? 阅读全文
摘要:
下面是个人代理第一个审批人做代理 时 添加权限的问题问题1:在代理委托类里直接添加 当前审批人权限,流程里 删除已所有人权限,会把加过的权限删除。2、先执行 item.update();再添加权限。重新发起流程,权限加上了,但流程提示走到第一个审人节点出错(工作流无法更新此项目,可能是因为此项目的一个或多个列需要其他类型的信息),表单的单据状态也没有改变,还是草稿状态2、 #region 添加审批权限代码 try { SPSecurity.RunWithElevatedPrivileges(delegate() { using (SPSite site = new SPSite(ap... 阅读全文
摘要:
1、一列数的规则如下: 1、1、2、3、5、8、13、21、34...... 求第30位数是多少, 用递归算法实现。(C#语言)答案:public int test(int n) { int m = 0; if (n == 1 || n == 2) return 1; else { m = test(n - 1) + test(n - 2); return m; } }2、public class A { public virtual void Fun1(int i) { Console.WriteLine(i); } public void Fun2(A a) { a.Fun1(1); .. 阅读全文
摘要:
错误 Web 部件错误: 无法从其“StatesToShow”属性的字符串表示形式“(集合)”创建“System.Collections.Generic.List`1[[Microsoft.SharePoint.Workflow.SPWorkflowState, Microsoft.SharePoint, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c]]”类型的对象。 在 阅读全文