摘要: 转自softgoto.iteye.com,已测试(支持IE、Firefox、Chrome)效果很炫,特转来留用!<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv=" 阅读全文
posted @ 2012-10-12 14:52 爱的华尔兹 阅读(388) 评论(1) 推荐(0) 编辑
摘要: 相同姓名的n行记录合并在一个字段,按不重复姓名输出Sql Codedeclare @t table (t varchar(10) ,n varchar(8))insert into @tselect '2012/7/20', '张三' union allselect '2012/7/21' ,'张三' union allselect '2012/7/20' ,'李四' union allselect '2012/7/20', '王二' union allselect 阅读全文
posted @ 2012-10-11 16:43 爱的华尔兹 阅读(1076) 评论(0) 推荐(0) 编辑
摘要: This is because a structure is a value type and both SetValue and GetValueexpect Objects causing the arguments to boxed. As a result, the GetValue andSetValue are working the boxed object rather than on the actual structure. object boxedObj = messageReceiveDTO; PropertyInfo[] propertys = me... 阅读全文
posted @ 2012-09-06 15:32 爱的华尔兹 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 版本:v2.32 (2011-8-17) 作者:deerchao转载:来源目录跳过目录本文目标如何使用本教程正则表达式到底是什么东西?入门测试正则表达式元字符字符转义重复字符类分枝条件反义分组后向引用零宽断言负向零宽断言注释贪婪与懒惰处理选项平衡组/递归匹配还有些什么东西没提到联系作者网上的资源及本文参考文献更新纪录本文目标30分钟内让你明白正则表达式是什么,并对它有一些基本的了解,让你可以在自己的程序或网页里使用它。如何使用本教程最重要的是——请给我30分钟,如果你没有使用正则表达式的经验,请不要试图在30秒内入门——除非你是超人 :)别被下面那些复杂的表达式吓倒,只要跟着我一步一步来,你会 阅读全文
posted @ 2012-09-05 11:20 爱的华尔兹 阅读(259) 评论(0) 推荐(0) 编辑