用VBSrcipt判断是否是日期
更新时间:2007年03月09日 00:00:00 作者:
<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>
相关文章
VBS中CreateObject和WScript.CreateObject的区别介绍
很多VBS新手都很困惑CreateObject和WScript.CreateObject有什么区别,为什么一些代码中用CreateObject,而另一些却用WScript.CreateObject2013-05-05
最新评论