摘要: constructor 对创建对象的函数的引用(指针)。对于 Object 对象,该指针指向原始的 Object() 函数。 Prototype 对该对象的对象原型的引用。对于所有的对象,它默认返回 Object 对象的一个实例。 hasOwnProperty(property) 判断对象是否有某个特定的属性。必须用字符串指定该属性。(例如,o.hasOwnProperty("name")) IsPrototypeOf(object) 判断该对象是否为另一个对象的原型。 PropertyIsEnumerable 判断给定的属性是否可以用 for...in 语句进行枚举。 T 阅读全文
posted @ 2011-04-11 10:21 工程兵 阅读(513) 评论(0) 推荐(0) 编辑
摘要: 代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->1<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">2<htmlxmlns="http://www.w3.org/1999/xhtml">3<head>4<title> 阅读全文
posted @ 2011-02-21 15:48 工程兵 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 无废话,上图下载地址(源码):http://download.csdn.net/source/2596371本控件是在 CustomControlFreak 的基础上修改的本代码开源,欢迎指正,可随意修改.Calendar.cs Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1usingSystem;2usingSystem.Drawing;3usingSystem.Collections.Generic;4usingSystem.Collect 阅读全文
posted @ 2011-02-16 14:16 工程兵 阅读(794) 评论(1) 推荐(0) 编辑
摘要: DbHelper.csCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--12usingSystem;3usingSystem.Text;4usingSystem.Reflection;5usingSystem.Collections;6usingSystem.Collections.Generic;7usingSystem.Collections.Specialized;8usingSystem.Data;9usingSystem.Data.Comm 阅读全文
posted @ 2011-02-15 13:30 工程兵 阅读(500) 评论(2) 推荐(0) 编辑
摘要: /// /// 服务端: /// /// 更新文件包名 /// 偏移 /// 每次读取字节数 单位KB /// 字节组 [WebMethod(Description = "大文件下载 测试")] public byte[] getFile(strin... 阅读全文
posted @ 2009-04-01 15:26 工程兵 阅读(2138) 评论(0) 推荐(0) 编辑