<script language=vbscript><!-- xxxxxx -----> </script&g
<script language=vbscript><!--
sub tijiao_onclick()
if len(login.userid.value)<3 then
msgbox "用户名太短,请选择一个长度大于3的名字"
login.userid.select
exit sub
end if
if instr(trim(login.userid.value)," ")>1 then
msgbox "用户名中请不要加入空格"
login.userid.select
exit sub
end if
if len(login.userpw.value)<4 then
msgbox "密码太短,请选择一个长度大于4的密码" '10
login.userpw.select
exit sub
end if
if login.userpw.value<>login.verifypw.value then
msgbox "确认密码和密码不同,请确认"
login.userpw.value=""
login.verifypw.value=""
login.userpw.select
exit sub
end if
if login.name.value="" then
msgbox "为了更好的为您服务,请输入您的名字"
login.name.select
exit sub
end if
if login.idnumber.value="" or Not isnumeric(login.idnumber.value) or len(login.idnumber.value)<>15 and len(login.idnumber.value)<>18 then
msgbox "请正确输入您的身份证号码"
login.idnumber.select
exit sub
end if
if login.age.value="" or Not isnumeric(login.age.value) then
msgbox "请正确输入你的年龄"
login.age.select
exit sub
else
if cint(login.age.value)<12 then
msgbox "年龄输入范围有错"
login.age.select
exit sub
end if
end if
if login.address.value="" then
msgbox "请输入您的详细联系地址"
login.address.select
exit sub
end if
if len(login.zipcode.value)<>6 or NOT isnumeric(login.zipcode.value) then
msgbox "邮政编码输入有误,请更正"
login.zipcode.select
exit sub
end if
if not login.phone.value="" then
if isnumeric(login.phone.value) then
if len(login.phone.value)<7 or left(login.phone.value,1)="-" or left(login.phone.value,1)="+" then
msgbox "电话号码输入有误"
login.phone.select
exit sub
end if
else
pos=instr(login.phone.value,"-")
len_phone=len(login.phone.value)
if pos>1 and pos<len_phone then
lef=left(login.phone.value,pos-1)
rig=right(login.phone.value,len_phone-pos)
if not isnumeric(lef) or not isnumeric(rig) or len(rig)<5 then
msgbox "电话号码输入有误"
login.phone.select
exit sub
end if
else
msgbox "电话号码输入有误"
login.phone.select
exit sub
end if
end if
end if
if login.email.value="" then
msgbox "为了与您方便的联系,请输入E-mail地址"
login.email.select
exit sub
else
if Not right(login.email.value,4)=".com" and not right(login.email.value,4)=".net" and not right(login.email.value,3)=".cn" or instr(login.email.value,"@")<=1 or instr(login.email.value,"@.") then
msgbox "请正确输入您的E-mail"
login.email.select
exit sub
end if
end if
login.submit
end sub
-->
</script>
<html>
<head>
<title>注册新会员</title>
<meta http-equiv="content-language" content="THL">
<meta http-equiv="content-type" content="text/html;charset=gb2312">
<style type="text/css">
<!--
.style5 {font-size: smaller}
.style6 {color: #FF0000}
-->
</style>
</head>
<body leftmargin=20 class=class2>
<span class="style5"><font color="#ff0000"> 您的位置: 注册页面 注意:带*的项目为必填项目</font></span>
<br>
<hr color="#999933" size=1>
<form method="POST" action="custadd.asp" name="login">
<p class="style5"> 会 员 名:
<input type="text" name="userid" size="15" maxlength="8" class=style5>
<span class="style6">*</span>(用户名长度为3-8位)<br>
<br>
密 码:
<input type="password" name="userpw" size="15" maxlength="8" class=style5>
<span class="style6">*</span>(密码长度为4-8位)<br>
<br>
确认密码:
<input type="password" name="verifypw" size="15" class=style5>
<span class="style6">*</span><br>
<br>
您的姓名:
<input type="text" name="name" size="15" maxlength="8" class=style5>
<span class="style6">*</span><br>
<br>
身份证号:
<input type="text" name="idnumber" size="20" maxlength="18" class=style5>
<span class="style6">*</span><br>
<br>
性 别:
<input name="sex" type="radio" class="style5" value="男" checked>
男
<input name="sex" type="radio" class="style5" value="女">
女
<span class="style6">*</span><br>
<br>
您的年龄:
<input type="text" name="age" size="5" maxlength="2" class=style5>
<span class="style6">*</span><br>
<br>
详细地址:
<input type="text" name="address" size="20" class=style5>
<span class="style6">*</span><br>
<br>
邮政编码:
<input type="text" name="zipcode" size="20" maxlength="6" class=style5>
<span class="style6">*</span><br>
<br>
电话号码:
<input type="text" name="phone" size="20" class=style5>
<br>
<br>
电子邮箱:
<input name="email" type="text" class=style5 size="20" maxlength="30">
<span class="style6">*</span><br>
<br>
<input name="tijiao" type="button" class="style5" value=" 提 交 ">
<input name="zhongzhi" type="reset" class="style5" value=" 重 置 ">
</p>
</form>
</body>
</html>
下面中的注释符号表示什么?
<script language=vbscript>
<!--
-->
</script>