刘政道 - 应用程序框架

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

2008年9月3日

摘要: 有一个无效 SelectedValue,因为它不在项目列表中 这个错误让我头疼了很长时间,在网上也查找了很多方法,但对我来说好像不奏效。 找来找去,最后还是决定用笨方法来解决。 protected void XX_DataBinding(object sender, EventArgs e) { DropDownList ddl = (... 阅读全文

posted @ 2008-09-03 11:34 刘政道 阅读(1149) 评论(0) 推荐(0) 编辑

2008年9月2日

摘要: SharePoint 权限 SPSite site = listEvent.Site; SPWeb web = site.OpenWeb(); string urlVal = listEvent.WebUrl + "/" + listEvent.UrlAfter; SPFile file = web.GetFile(listEvent.UrlAfter); while (file.Chec... 阅读全文

posted @ 2008-09-02 14:21 刘政道 阅读(936) 评论(0) 推荐(0) 编辑

2008年8月26日

摘要: select sum(field1) as r from table1r is null如何让r变成0select isnull(sum(field1),0) as r from table1r 不在是null,而是0 阅读全文

posted @ 2008-08-26 17:08 刘政道 阅读(788) 评论(1) 推荐(0) 编辑

摘要: 新建一个文档库Docs 将程序文件都放到Docs中 配置Web.Config 设置允许执行aspx文件 注册dll 或将dll文件拷到C:"Inetpub"wwwroot"wss"VirtualDirectories"80"bin 设置WebPart权限级别 表示完全信... 阅读全文

posted @ 2008-08-26 17:06 刘政道 阅读(335) 评论(0) 推荐(0) 编辑

2008年8月22日

摘要: JavaScript将汉字编码,编成符合网址的格式,类似于asp.net 的 UrlEncode(),UrlDecode() escape(),unescape() 阅读全文

posted @ 2008-08-22 14:13 刘政道 阅读(732) 评论(0) 推荐(0) 编辑