tiger

BlogJava 首页 新随笔 联系 聚合 管理
  6 Posts :: 0 Stories :: 4 Comments :: 0 Trackbacks

2007年9月23日 #

declare   @Tem   table   (iIndex   int,Value   varchar(200))  
   
insert   @Tem   values(1,'First   One')  
insert   @Tem   values(2,'Second   One')

select * from @Tem

posted @ 2007-11-03 22:01 他 阅读(658) | 评论 (0)编辑 收藏

MyEclipse5.5注册码
Subscriber: www.1cn.biz
 Subscriber Code: jLR8ZC-655355-5450765457039125
 或者
 Subscriber: www.1cn.biz
 Subscriber Code: jLR7ZL-655355-5450755330522962
---------------------------------------------------------------
posted @ 2007-09-23 13:24 他 阅读(181) | 评论 (0)编辑 收藏


function doValidate(value)
  {
   vkeyWords=/^[^`~!@#$%^&*()+=|\\\][\]\{\}:;'\,.<>/?]{1}[^`~!@$%^&()+=|\\\][\]\{\}:;'\,.<>?]{0,19}$/;
   if(value==null || value=="")
   {
    alert("请输入正确的查询参数");
    return false
   }
   if(!vkeyWords.test(value))
   {
    alert("您输入的查询参数不正确,请重新输入!");
    return false;
   }   
   return true;
  }
posted @ 2007-09-23 13:17 他 阅读(2388) | 评论 (1)编辑 收藏