刘政道 - 应用程序框架

《31天学会CRM项目开发(C#编程入门及项目实战)》作者,IT经理,程序员
  博客园  :: 新随笔  :: 联系 :: 管理

2008年9月24日

摘要: Microsoft.SharePoint.SPException: 此网页的安全性验证无效并且可能损坏。请单击 Web 浏览器中的“后退”,刷新网页,再重试操作。 ---> System.Runtime.InteropServices.COMException (0x8102006D): 此网页的安全性验证无效并且可能损坏。请单击 Web 浏览器中的“后退”,刷新网页,再重试操作。 在 Micro... 阅读全文

posted @ 2008-09-24 14:59 刘政道 阅读(1022) 评论(0) 推荐(0) 编辑

2008年9月22日

摘要: asp.net网页中调用c#写的dll文件 如果是WebProject,直接在解决方案中添加引用,然后实例化即可。 如果是单个的网页,你需要这样做, 需要aspx页面同目录下有web.config和bin目录下youFunction.dll 阅读全文

posted @ 2008-09-22 11:54 刘政道 阅读(983) 评论(0) 推荐(0) 编辑

2008年9月18日

摘要: Usage data processing on SSP SharedServices1 was skipped because it is not enabled. 09/18/2008 15:15:33.09 w3wp.exe (0x156C) 0x0A30 Windows SharePoint Services ... 阅读全文

posted @ 2008-09-18 15:35 刘政道 阅读(1042) 评论(2) 推荐(0) 编辑

2008年9月12日

摘要: 域帐号查询与更新 引用 private bool isLoginNameExist(string ln) { DirectoryEntry entry = new DirectoryEntry(ldap); DirectorySearcher mySearcher = new DirectorySearcher(entry); // Set DerefAlias to Always. myS... 阅读全文

posted @ 2008-09-12 16:57 刘政道 阅读(643) 评论(0) 推荐(0) 编辑

摘要: SharePoint List ListItem 增删改 新增 修改 删除 引用 定义SPSite SPSite site = new SPSite(hostUrl); SPWeb rootweb = site.RootWeb; 修改时,这是必要的 rootweb.AllowUnsafeUpdates = true; if (isListExist(rootweb... 阅读全文

posted @ 2008-09-12 16:42 刘政道 阅读(1413) 评论(6) 推荐(0) 编辑