如何验证文本框输入的是时间?
如题,
if ntime="" then
response.write "<SCRIPT language=JavaScript>alert('请输入时间');"
Response.Write"this.location.href='vbscript:history.back()';</SCRIPT>"
Response.End
end if
如果,我想判断输入的是时间,提交到数据库中,应该怎么写这if 语句?
if ntime<>"" and *** then
response.write "<SCRIPT language=JavaScript>alert('请输入正确的时间,格式必须为:2006-02-06');"
Response.Write"this.location.href='vbscript:history.back()';</SCRIPT>"
Response.End
end if
请大家帮忙提示一下上面那一行应该怎么写