会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
ChineseMoonGod
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
30
31
32
33
34
35
36
37
38
···
49
下一页
2015年12月14日
C# Regex类用法
摘要: 使用Regex类需要引用命名空间:using System.Text.RegularExpressions;利用Regex类实现全部匹配输出 string str = "test4323232test432323"; Regex r = new Regex("test4");...
阅读全文
posted @ 2015-12-14 10:44 ChineseMoonGod
阅读(379)
评论(0)
推荐(0)
2015年12月11日
addListener添加事件监听器,第三个参数useCapture (Boolean) 的作用
摘要: addEventListener 有三个参数:第一个参数表示事件名称(不含 on,如 "click");第二个参数表示要接收事件处理的函数;第三个参数为 useCapture,本文就讲解它。请在此点击鼠标。var outDiv = document.getElementById("outDiv");...
阅读全文
posted @ 2015-12-11 11:17 ChineseMoonGod
阅读(1573)
评论(0)
推荐(0)
泛型委托 Predicate/Func/Action
摘要: Predicate 泛型委托表示定义一组条件并确定指定对象是否符合这些条件的方法。此委托由 Array 和 List 类的几种方法使用,用于在集合中搜索元素。看看下面它的定义:// Summary: // Represents the method that defines a set of c...
阅读全文
posted @ 2015-12-11 10:42 ChineseMoonGod
阅读(260)
评论(0)
推荐(0)
2015年12月10日
CKeditor 配置使用
摘要: CKeditor 配置使用一、使用方法:1、在页面中引入ckeditor核心文件ckeditor.js2、在使用编辑器的地方插入HTML控件如果是ASP.NET环境,也可用服务器端控件注意在控件中加上 class="ckeditor" 。3、将相应的控件替换成编辑器代码4、配置编辑器 ckedito...
阅读全文
posted @ 2015-12-10 10:30 ChineseMoonGod
阅读(256)
评论(0)
推荐(0)
2015年12月4日
js 后台异步执行
摘要: public void AlertMsg(string msg, bool async) { string script = string.Format("alert('{0}'); ", msg); RegisterClientScrip...
阅读全文
posted @ 2015-12-04 15:54 ChineseMoonGod
阅读(219)
评论(0)
推荐(0)
kindeditor.net应用
摘要: 1.网址:http://kindeditor.net/docs/usage.html
阅读全文
posted @ 2015-12-04 11:31 ChineseMoonGod
阅读(164)
评论(0)
推荐(0)
2015年12月3日
window系统快捷键
摘要: 1.本地安全策略:gpedit.msc
阅读全文
posted @ 2015-12-03 20:43 ChineseMoonGod
阅读(153)
评论(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
阅读(205)
评论(0)
推荐(0)
div+css 定位浅析
摘要: 在用CSS+DIV进行布局的时候,一直对position的四个属性值relative,absolute,static,fixed分的不是很清楚,以致经常会出现让人很郁闷的结果。先看下各个属性值的定义:1、static:默认值。没有定位,元素出现在正常的流中(忽略 top, bottom, left,...
阅读全文
posted @ 2015-12-03 16:54 ChineseMoonGod
阅读(147)
评论(0)
推荐(0)
C# Enum,Int,String的互相转换
摘要: 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
阅读(279)
评论(0)
推荐(0)
上一页
1
···
30
31
32
33
34
35
36
37
38
···
49
下一页
公告