tiger

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

2007年11月3日 #

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 他 阅读(657) | 评论 (0)编辑 收藏

2007年9月23日 #

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 他 阅读(180) | 评论 (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)编辑 收藏

2007年9月15日 #

1、点击“开始》运行”,输入“regedit”,打开注册表
2、找到目录HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager
3、删除其中的“PendingFileRenameOperations”
4、关闭注册表
5、重新开始安装SQL Server 2000,一且OK了。

在运行窗口输入regedit,打开注册表编辑器,在HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager中找到PendingFileRenameOperations,删除该键值(这个键值是安装程序暂挂项目,只要找到对应的应用程序清除掉就行了),关闭注册表编辑器。重新安装SQL Server 2000即可。

posted @ 2007-09-15 21:22 他 阅读(279) | 评论 (0)编辑 收藏

2007年8月5日 #

@echo off

echo 正在清除系统垃圾文件,请稍等......

del /f /s /q %systemdrive%\*.tmp

del /f /s /q %systemdrive%\*._mp

del /f /s /q %systemdrive%\*.log

del /f /s /q %systemdrive%\*.gid

del /f /s /q %systemdrive%\*.chk

del /f /s /q %systemdrive%\*.old

del /f /s /q %systemdrive%\recycled\*.*

del /f /s /q %windir%\*.bak

del /f /s /q %windir%\prefetch\*.*

rd /s /q %windir%\temp & md %windir%\temp del /f /q %userprofile%\cookies\*.*

del /f /q %userprofile%\recent\*.*

del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*" del /f /s /q "%userprofile%\Local Settings\Temp\*.*"

del /f /s /q "%userprofile%\recent\*.*"

echo 清除系统LJ完成!

echo. & pause 

posted @ 2007-08-05 19:51 他 阅读(2134) | 评论 (3)编辑 收藏

 1function getchknum(){
 2        var x=document.all.chk.length;
 3        
 4        
 5        var j=0;
 6        for(var i=0;i<x;i++){
 7            if(document.all.chk[i].checked==true){
 8                j=j+1;
 9            }

10        }

11        if(x="undefined"){
12            if(document.all.chk.checked==true){
13                j=j+1;
14            }

15        }

16        return j;
17    }
posted @ 2007-08-05 19:45 他 阅读(244) | 评论 (0)编辑 收藏

仅列出标题