上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: public class ConvertHelper { public static List<T2> ConvertToList<T1, T2>(List<T1> source) { List<T2> t2List = new List<T2>(); if (source == null || s 阅读全文
posted @ 2019-07-16 11:03 E山猫 阅读(159) 评论(0) 推荐(0)
摘要: 两个实体集合比较获取差异值 PLST.Where(x => !plst.Select(y => y.ERPSalesType).Contains(x.ERPSalesType)).Union(plst.Where(x => !PLST.Select(y => y.ERPSalesType).Cont 阅读全文
posted @ 2019-05-23 09:04 E山猫 阅读(2941) 评论(0) 推荐(0)
摘要: required :input 必填字段表单 formnovalidate:不需要验证的单个input type=number{min max step} range滑块样式:{min max step}配合<output></output>使用 <input type="range" onchan 阅读全文
posted @ 2016-12-17 17:12 E山猫 阅读(217) 评论(0) 推荐(0)
摘要: toggle() 方法来切换 hide() 和 show() 方法。 fadein(),fadeout(),fadeto,fadetoggle() 方法来实现淡入,淡出,颜色变淡,切换颜色变化。 slidedown(),slideup(),slideToggle()方法实现向下滑动,向上滑动,切换上 阅读全文
posted @ 2016-11-03 13:16 E山猫 阅读(127) 评论(0) 推荐(0)
摘要: 向文本文件中最低部插入内容 FileStream fs = null; string filePath = @"C:\Users\Administrator\Desktop\FactoryCalendar1\FactoryCalendar/log.txt"; Encoding encoder = E 阅读全文
posted @ 2016-10-28 14:48 E山猫 阅读(113) 评论(0) 推荐(0)
摘要: 获取一个整数的JS代码 使用Math.floor(Math.random())获取一个想要的范围内的整数 例如:获取一个1~52之间的整数 用Math.random()*52获取一个>=0且<52的数 然后Math.random()*52+1得到一个>=1且<53的数, 下面进行取整:Math.fl 阅读全文
posted @ 2016-10-26 11:02 E山猫 阅读(696) 评论(0) 推荐(0)
摘要: 1.URL: 要求为String类型的参数,(默认为当前页地址)发送请求的地址。 2.type: 要求为String类型的参数,请求方式(POST或Get)。注意其他http请求方法,例如put和delete也可以使用,但仅部分浏览器支持。 3.timeout:: 要求为Number类型的参数,设置 阅读全文
posted @ 2016-10-25 14:16 E山猫 阅读(230) 评论(0) 推荐(0)
摘要: 项目目标: 为每一个博客用户提供个性化的 blogo解决方案,打造精品blogo门户网站 环境:VS2008+SQL Server2005 主要技术: 主体框架 :逻辑架构ASP、NET MVC,物理架构Three Ties,2者相结合。 为了提高网站自由排名,白帽子SEO DIV + CSS布局手 阅读全文
posted @ 2016-06-27 13:58 E山猫 阅读(158) 评论(0) 推荐(0)
摘要: ctrl+G:在网页中是查找的快捷键 阅读全文
posted @ 2016-05-18 15:34 E山猫 阅读(168) 评论(0) 推荐(0)
摘要: public和public static 带有static的可以使用类调用,类调用的首字母是大写。 小写的实例调用需要实现初始化一个实例(小写)。var person = new Person(). ctrl + shift + B编译; abstract class 抽象类是不能实例化的。用于被其 阅读全文
posted @ 2016-05-03 17:52 E山猫 阅读(86) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 11 下一页