keys是按键的枚举类型private void txtPropertyValue_KeyPress(object sender, KeyPressEventArgs e) { if ((Keys)e.KeyChar == Keys.Enter) ...
ECMAScript中有五种简单数据类型(也称为基本数据类型):Undefined、Null、Boolean、Number、StringECMAScript还有一种复杂数据类型——Object,Object本质上是由一组无序的名值对组成的。ECMAScript不支持任何创建自定义类型的机制,而所有值...
分类:
Web程序 时间:
2014-06-15 22:26:57
阅读次数:
346
又很久没写博客,今天记录一个SQLserver通用分页存储过程(适用于SqlServer2000及以上版本)1.支持连表2.支持条件查询USE [MYDB] GO/****** Object: StoredProcedure [dbo].[SP_CommonPage]SET QUOTED_IDENT...
分类:
数据库 时间:
2014-06-15 22:13:19
阅读次数:
303
1,在控制器中实现去除html标签的静态方法//去除html标签 public static string ReplaceHtmlMark(object Contents) { string HtmlString = Convert.ToString...
分类:
Web程序 时间:
2014-06-15 21:32:38
阅读次数:
224
http://blog.csdn.net/finelife/article/details/16086321.写入sessionObject sessionName = "name";Object sessionValue = "value";HttpSession session = (HttpS...
分类:
Web程序 时间:
2014-06-15 21:14:40
阅读次数:
219
这是我第一次写的组合条件查询,很丑,仅此纪念。(黑体总是显得跌跌撞撞没自信的赶脚有没有~~) 1 USE [exercise] 2 GO 3 /****** Object: StoredProcedure [dbo].[procstudent] Script Date: 11/10/2013 23:...
分类:
其他好文 时间:
2014-06-15 20:59:38
阅读次数:
211
select a.name,a.[type],b.[definition] from sys.all_objects a,sys.sql_modules b where a.is_ms_shipped=0 and a.object_id = b.object_id and a.[type] in (...
分类:
数据库 时间:
2014-06-15 20:39:31
阅读次数:
195
javascript 中对象深拷贝在看到jq.extend 时发现javascript 中的深拷贝,一直没有详细了解深拷贝怎么实现的。 1 var isType = function(obj, type){ 2 var toString = Object.prototype....
分类:
编程语言 时间:
2014-06-15 17:31:56
阅读次数:
297
Object.extend=function(destination, source) {for(varpropertyinsource) { destination[property]=source[property];}returndestination;}Prototype 对Object类进...
分类:
Web程序 时间:
2014-06-15 00:47:58
阅读次数:
188
About getattrPython’s getattr function is used to fetch an attribute from an object, using a string object instead of an identifier to identify the at...
分类:
编程语言 时间:
2014-06-15 00:26:18
阅读次数:
487