上一页 1 ··· 5 6 7 8 9 10 11 12 下一页
摘要: 官方教程: http://www.webdiyer.com/mvcpager 阅读全文
posted @ 2016-05-03 16:25 李寒星 阅读(141) 评论(0) 推荐(0) 编辑
摘要: function PdfPrint() { bdhtml = window.document.body.innerHTML; sprnstr = "<!--startprint-->"; eprnstr = "<!--endprint-->"; prnhtml = bdhtml.substr(bdh 阅读全文
posted @ 2016-05-03 16:05 李寒星 阅读(3315) 评论(0) 推荐(0) 编辑
摘要: 1.Json的使用 $.getJSON("subPreview", { jsonDatas: JSON.stringify(jsonData) }, function(data) { $("#friendContent").html(data.Name); }) $.ajax({ url: "/Fr 阅读全文
posted @ 2016-04-19 11:41 李寒星 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 存储过程的使用: DateTime todayTime = DateTime.Now.AddHours(8); DateTime yesterdayTime = todayTime.AddDays(-1); SqlParameter[] parameters1 = { new SqlParamete 阅读全文
posted @ 2016-04-11 15:54 李寒星 阅读(153) 评论(0) 推荐(0) 编辑
摘要: MVC 实现下载功能主要借助于 File 属性: //下载文件接口 public ActionResult GetTrackTempIsc(ICSModels icsModels) { bool flag = false; string path = Server.MapPath("~/File/f 阅读全文
posted @ 2016-04-11 15:48 李寒星 阅读(1320) 评论(0) 推荐(0) 编辑
摘要: 什么是WMI? Windows Management Instrumentation (WMI)是可伸缩的系统管理结构,该规范采用一个统一、基于标准且可扩展的面向对象接口。它提供与系统管理员信息和基础WMI API交互的标准方法,主要由系统管理应用程序开发人员和系统管理员用来访问和操作系统管理信息; 阅读全文
posted @ 2016-04-11 15:28 李寒星 阅读(354) 评论(0) 推荐(0) 编辑
摘要: PowerDesigner 的使用这两篇博客挺好,我也是跟着学习,就不再写了: 初步学习: http://www.cnblogs.com/huangcong/archive/2010/06/14/1757957.html 学习扩展: http://blog.csdn.net/wangpeng047/ 阅读全文
posted @ 2016-04-11 12:30 李寒星 阅读(123) 评论(0) 推荐(0) 编辑
摘要: wet二套 阅读全文
posted @ 2016-04-11 12:27 李寒星 阅读(142) 评论(0) 推荐(0) 编辑
摘要: TFS 刚下载的项目,出现该问题。 解决方案: 将文件夹属性“只读”,取消 阅读全文
posted @ 2016-04-08 11:21 李寒星 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 1.分部页 _PartialPage.cshtml @model List<string> <a>完美世界</a> @foreach (var item in Model) { <li>@item</li> } 2.HomeController.cs 和 index.html public Acti 阅读全文
posted @ 2016-04-07 23:36 李寒星 阅读(692) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 下一页