用VBSrcipt判断是否是日期
                (编辑:jimmy 日期: 2025/11/1 浏览:3 次 )
            
            
            <SCRIPT LANGUAGE="vbScript"> 
<!--
'判断是否是日期
function thisdate(dt)
if not IsDate(dt) then
thisdate=false
elseif int(left(dt,4))<int(1750) then
thisdate=false
else
thisdate=true
end if
end function
//-->
</SCRIPT>
            <!--
'判断是否是日期
function thisdate(dt)
if not IsDate(dt) then
thisdate=false
elseif int(left(dt,4))<int(1750) then
thisdate=false
else
thisdate=true
end if
end function
//-->
</SCRIPT>
下一篇:防SQL注入的VBSrcipt代码