上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 49 下一页
摘要: 使用Regex类需要引用命名空间:using System.Text.RegularExpressions;利用Regex类实现全部匹配输出 string str = "test4323232test432323"; Regex r = new Regex("test4");... 阅读全文
posted @ 2015-12-14 10:44 ChineseMoonGod 阅读(365) 评论(0) 推荐(0) 编辑
摘要: addEventListener 有三个参数:第一个参数表示事件名称(不含 on,如 "click");第二个参数表示要接收事件处理的函数;第三个参数为 useCapture,本文就讲解它。请在此点击鼠标。var outDiv = document.getElementById("outDiv");... 阅读全文
posted @ 2015-12-11 11:17 ChineseMoonGod 阅读(1371) 评论(0) 推荐(0) 编辑
摘要: Predicate 泛型委托表示定义一组条件并确定指定对象是否符合这些条件的方法。此委托由 Array 和 List 类的几种方法使用,用于在集合中搜索元素。看看下面它的定义:// Summary: // Represents the method that defines a set of c... 阅读全文
posted @ 2015-12-11 10:42 ChineseMoonGod 阅读(256) 评论(0) 推荐(0) 编辑
摘要: CKeditor 配置使用一、使用方法:1、在页面中引入ckeditor核心文件ckeditor.js2、在使用编辑器的地方插入HTML控件如果是ASP.NET环境,也可用服务器端控件注意在控件中加上 class="ckeditor" 。3、将相应的控件替换成编辑器代码4、配置编辑器 ckedito... 阅读全文
posted @ 2015-12-10 10:30 ChineseMoonGod 阅读(239) 评论(0) 推荐(0) 编辑
摘要: public void AlertMsg(string msg, bool async) { string script = string.Format("alert('{0}'); ", msg); RegisterClientScrip... 阅读全文
posted @ 2015-12-04 15:54 ChineseMoonGod 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 1.网址:http://kindeditor.net/docs/usage.html 阅读全文
posted @ 2015-12-04 11:31 ChineseMoonGod 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 1.本地安全策略:gpedit.msc 阅读全文
posted @ 2015-12-03 20:43 ChineseMoonGod 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 1.vs2013下载地址http://www.iplaysoft.com/vs2013.html2.ABP框架下载:http://www.cnblogs.com/Leo_wl/p/4537392.html 官网:http://www.aspnetboilerplate.com/Templates学习... 阅读全文
posted @ 2015-12-03 17:17 ChineseMoonGod 阅读(196) 评论(0) 推荐(0) 编辑
摘要: 在用CSS+DIV进行布局的时候,一直对position的四个属性值relative,absolute,static,fixed分的不是很清楚,以致经常会出现让人很郁闷的结果。先看下各个属性值的定义:1、static:默认值。没有定位,元素出现在正常的流中(忽略 top, bottom, left,... 阅读全文
posted @ 2015-12-03 16:54 ChineseMoonGod 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 1、Enum-->String (1)利用Object.ToString()方法:如Colors.Green.ToString()的值是"Green"字符串;(2)利用Enum的静态方法GetName与GetNames: public static string GetName(Type enumT 阅读全文
posted @ 2015-12-03 16:49 ChineseMoonGod 阅读(249) 评论(0) 推荐(0) 编辑
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 49 下一页