摘要: 1、DNN(DotNetNuke)研究手札系列1-资源: http://www.cnblogs.com/unruledboy/archive/2004/09/01/38425.html 2、DNN(DotNetNuke)研究手札系列2-背景、现状: http://www.cnblogs.com/unruledboy/archive/2004/09/01/38607.html 3、DNN(DotNetNuke)研究手札系列3-框架(概述): http://www.cnblogs.com/unruledboy/archive/2004/09/04/39628.html 4、DNN(DotNet.. 阅读全文
posted @ 2012-05-23 23:24 轻量级程序员 阅读(248) 评论(0) 推荐(0) 编辑
摘要: DNN常用的几种页面跳转(EditUrl和Globals.NavigateURL)看过我的视频教程或下载过Blog项目源码的用户都应该知道,我在演示中的页面跳转是在HTML页完成的.那么如果我们添加了一个自己的Button,要通过代码来完成页面的跳转,我们要怎么写跳转的代码呢? 下面我就把常用的几种页面间的跳转列出来,大家可以参考一下. 一、相同模块间 1)跳转到ascx页面,不带参数 Response.Redirect(EditUrl("","","ascx页面Key值")); 2)跳转到ascx页面,带参数 Response.Re 阅读全文
posted @ 2012-05-23 23:01 轻量级程序员 阅读(578) 评论(0) 推荐(0) 编辑
摘要: 1.DNN源代码及其模块 http://sourceforge.net/project/showfiles.php?group_id=770522.网络核动力 http://www.dnnportal.cn/3. DNN中文技术支持 http://www.dnnchina.net/4.http://www.adefwebserver.com/5. Rapid DotNetNuke 4 Module Development Using New CodeSmith Templates and VS 2005 ( Rapid DotNetNuke 4 Module Development Using 阅读全文
posted @ 2012-05-23 22:49 轻量级程序员 阅读(866) 评论(1) 推荐(1) 编辑
摘要: 1、DNN 社交挂件模块该模块可以使你轻松的将各种社交部件添加到你的站点。下载地址:http://socialhelpers.codeplex.com/2、DNN天气模块该模块展示天气预报下载地址http://weather.codeplex.com/ 阅读全文
posted @ 2012-05-23 22:44 轻量级程序员 阅读(195) 评论(0) 推荐(0) 编辑
摘要: string one = "1"; //an exaplme string two = "2"; //an exaplme foreach (var item in myStringsList) { string[] splitted = item.Split(new char[] { '_' }, StringSplitOptions.RemoveEmptyEntries); if(splitted.Length >= 3) { if(split... 阅读全文
posted @ 2012-05-23 01:45 轻量级程序员 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 今天在网上偶尔发现一个开源项目,Linq to excel,感觉挺有意思的,不过这个可能要.net 3.0以上才可以用吧代码类似以下的 var excel = newExcelQueryFactory("excelFileName"); var indianaCompanies = from c in excel.Worksheet<Company>() where c.State == "IN" select c; 这样的Linq方式,相信在遍历值和... 阅读全文
posted @ 2012-05-23 01:27 轻量级程序员 阅读(3190) 评论(0) 推荐(0) 编辑
摘要: 1 protected void GV_GroupPurchasing_RowEditing(object sender, GridViewEditEventArgs e) 2 { 3 GV_GroupPurchasing.EditIndex = e.NewEditIndex; 4 BindData 阅读全文
posted @ 2012-05-23 00:41 轻量级程序员 阅读(268) 评论(0) 推荐(0) 编辑
关注获取博文附件