刘政道 - 应用程序框架

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

2008年9月4日

摘要: GridView中Dataformatstring 格式化日期应注意的问题 1、HtmlEncode="False" 2、DataFormatString="{0:d}" 阅读全文

posted @ 2008-09-04 13:18 刘政道 阅读(1547) 评论(0) 推荐(0)

2008年9月3日

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

posted @ 2008-09-03 11:34 刘政道 阅读(1162) 评论(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 刘政道 阅读(952) 评论(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 刘政道 阅读(804) 评论(1) 推荐(0)

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

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