上一页 1 ··· 4 5 6 7 8
摘要: 这样会自动在C:\Inetpub\wwwroot 会出现这个文件夹。 上述步骤都是在安装了 VS2010、MVC3.0和的电脑上操作的 接下来进行服务器的部署 :1. 安装Microsoft .net FrameWork 4.0安装包; 2. 安装ASP.NET MVC 3;3. 设置“Web扩展服 阅读全文
posted @ 2016-08-17 18:13 cclon 阅读(189) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 把集合拼接成用分隔符分割的字符串 /// </summary> /// <param name="source"></param> /// <param name="separator"></param> /// <returns></returns> publi 阅读全文
posted @ 2016-08-09 11:21 cclon 阅读(513) 评论(0) 推荐(0) 编辑
摘要: web.config ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// using MySql.Data.MySqlClient; using ... 阅读全文
posted @ 2016-08-09 11:08 cclon 阅读(845) 评论(0) 推荐(0) 编辑
摘要: //按部门汇总 IEnumerable report = summary .GroupBy(x => new { x.DeptID, x.DeptName }).Select(g => new WeekReportWithDepartmentInfo { DeptID = g.Key.DeptID, ... 阅读全文
posted @ 2016-07-22 12:45 cclon 阅读(406) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8