摘要:
首先需要引用程序集 Microsoft Script Control 1.0然后新建一个js文件,并写入相应的js方法//执行JS文件 private void btnjs_Click(object sender, EventArgs e) { //... 阅读全文
摘要:
var s= document.getElementById("id");var chils= s.childNodes; //得到s的全部子节点var par=s.parentNode; //得到s的父节点var ns=s.nextSbiling; //获得s的下一个兄弟节点【该变量测试... 阅读全文
摘要:
public static int Asc(string character) { if (character.Length == 1) { System.Text.ASCIIEncoding asciiEncoding = new System.Text.ASCIIEncoding... 阅读全文
摘要:
//ASCII码转换字符function asciiToStr(code) { //alert("code:" + code + "\r\n字符:" + String.fromCharCode(code)); return String.fromCharCode(code);}//字符转... 阅读全文
摘要:
json格式的数据遍历【循环】如果数据结构是这样var data=[{name:"a",age:12},{name:"b",age:11},{name:"c",age:13},{name:"d",age:14}]; for(var o in data){ alert(o);//索引 0,1... 阅读全文
摘要:
#region 分钟数转换成倒计时,格式 _天_时_分 + string MinutesToCountdown(int Minutes) /// /// 将分钟数转换成倒计时 格式:_天_时_分 /// /// 分钟数 //... 阅读全文
摘要:
//方法一 if (e.KeyChar == 0x20) e.KeyChar = (char)0; //禁止空格键 if ((e.KeyChar == 0x2D) && (((TextBox)sender).Text.Length =... 阅读全文
摘要:
// 保存 Cookiefunction setCookie(name, value) { expires = new Date(); expires.setTime(expires.getTime() + (1000 * 86400 * 365)); document.cooki... 阅读全文
摘要:
//定义类 public class MyClass { public int Property1 { get; set; } public string Property2 { get; set; } } MyClass tmp_Clas... 阅读全文
摘要:
//所有的特性必须要继承ValidationAttribute public class MaxWordsAttribute : ValidationAttribute { //该参数是验证条件【构造函数里面可以增加验证条件】 private readonl... 阅读全文