摘要: 翻过这道山,就有人听到你的故事。 项目(需求)是很好的学习途径,项目(需求)+看书,这样效果才好,注意项目在前面。方向错了的话,容易出问题和狼狈。 择苦则安,择做则乐(闲)。 悟透:所有错误的抉择(所有的挣扎)都是因为没想明白,没领悟透。 接触:那些不好的东西,不要接触,停不下来的,比如游戏,各种接 阅读全文
posted @ 2019-09-11 16:17 namehwh 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/ms-uap/p/9928254.html 阅读全文
posted @ 2019-09-11 16:17 namehwh 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 1,下载安装jdk1.8u45http://www.oracle.com/technetwork/java/javase/downloads/index-jsp-138363.html一般安装目录自动创建在:C:\Program Files\Java\jdk1.8.0_452,配置环境变量:一般都选... 阅读全文
posted @ 2015-07-07 14:46 namehwh 阅读(1073) 评论(0) 推荐(0) 编辑
摘要: 1,request.querystring和request.form的区别request.querystring是用来接收地址里面问号“?”后面的参数的内容, 用get方法读取的不安全request.form是用来接收表单递交来的数据,是用post方法读取的form表单中的method中看你是get... 阅读全文
posted @ 2014-07-18 14:52 namehwh 阅读(7829) 评论(0) 推荐(0) 编辑
摘要: 获取当前的日期时间 格式“yyyy-MM-dd HH:MM:SS”function getNowFormatDate() { var date = new Date(); var seperator1 = "-"; var seperator2 = ":"; var mont... 阅读全文
posted @ 2014-07-18 13:51 namehwh 阅读(416595) 评论(4) 推荐(22) 编辑
摘要: 1,通过linq:报表列表的查询,去除重复,一张报表在列表中显示一条数据;------------DAL中 /// /// 查询所有的关于生产报表的填写数据情况 /// /// 查询条件:实体存储 /// 页面号,如第一页 ... 阅读全文
posted @ 2014-07-16 14:41 namehwh 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 1.NET中六大内置对象:1.Response 2.Request 3.Session 4.Appliction 5.Server 6.CookieSystem.Web.HttpContext.Current.Server.MapPath()System.Web.HttpContext.Curren... 阅读全文
posted @ 2014-07-16 10:41 namehwh 阅读(153) 评论(0) 推荐(0) 编辑
摘要: .NET中六大内置对象:1.Response 2.Request 3.Session 4.Appliction 5.Server 6.CookieSystem.Web.HttpContext.Current.Server.MapPath()System.Web.HttpContext.Current... 阅读全文
posted @ 2014-07-16 10:28 namehwh 阅读(352) 评论(0) 推荐(0) 编辑
摘要: 1,直接写 '> '> ... 阅读全文
posted @ 2014-07-16 10:01 namehwh 阅读(815) 评论(0) 推荐(0) 编辑
摘要: 1,简单的对txt文件的操作:当txt文件不存在时自动新增该文件,存在时则覆盖txt文件中的内容。using System.IO; FileStream objFileStream = new FileStream("E:/chinaexcel数据保存的xml数据串.txt",FileMode.Append, FileAccess.Write); StreamWriter objStreamWriter = new StreamWriter(objFileStream); objStreamWriter.Write(zxtbDa... 阅读全文
posted @ 2014-04-11 11:52 namehwh 阅读(215) 评论(0) 推荐(0) 编辑