[求助]关于身高的表单验证
我的表单中要验证身高的数据,首先必须是数字,其次身高只能在140-220之间.用下面的代码只能实现前面的功能,请高手帮我看看,祝新春快乐!
if height<>"" then
if not ((height>="0" and height<="9") ) then
response.redirect "error.asp?info=对不起,身高必须是数字,请重新输入!"
else
height=int(height)
end if
end if
if height<>"" then
height=int(height)
if (height >220 and height <140) then
response.Redirect "error.aso?info=对不起,您输入的身高有误,请重新输入!"
end if
end if