主题:求帮忙:如何保证注册栏里的电话为数字,以这种方法实现
<%
ac=request.QueryString("ac")
msg="注册错误信息"
if request.Form("names")="" then
msg=msg&"<br>"&"真实姓名不能为空"
end if
if request.Form("tel")="" then
msg=msg&"<br>"&"联系电话不能为空"
end if
if request.Form("address")="" then
msg=msg&"<br>"&"通信地址不能为空"
end if
%>
这种情况如何让联系电话只能为数字。
ac=request.QueryString("ac")
msg="注册错误信息"
if request.Form("names")="" then
msg=msg&"<br>"&"真实姓名不能为空"
end if
if request.Form("tel")="" then
msg=msg&"<br>"&"联系电话不能为空"
end if
if request.Form("address")="" then
msg=msg&"<br>"&"通信地址不能为空"
end if
%>
这种情况如何让联系电话只能为数字。