摘要:
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 阅读全文
摘要:
1、DNN 社交挂件模块该模块可以使你轻松的将各种社交部件添加到你的站点。下载地址:http://socialhelpers.codeplex.com/2、DNN天气模块该模块展示天气预报下载地址http://weather.codeplex.com/ 阅读全文
摘要:
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... 阅读全文
摘要:
今天在网上偶尔发现一个开源项目,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方式,相信在遍历值和... 阅读全文