如何用ASP实现这个判断?
一个文本框,<input type="text" />只能输入数字,
如果在点击提交之后,ASP判断输入的是否数字类型,
如果不是数字类型的,叫提示“你输入的不是数字”
请问怎么做这个功能?
<% sz=request.form("sz") if not isNumeric(sz) then Response.Write "<script>alert(' 不是数字!')</script>" end if %> <form action="" method="post"> <input type="text" name="sz"> <input type="submit" vlaue=" 提交"> </form>