有一段代码是这样写的是什么意思
a.asp页面
function CheckUser()
{
if(!checkLength("UserName" , "用户名称" , 3 , 16 , "~!@#$%^&*+=\\\'\"\<\>"))
return false;
window.showModalDialog("Person_CheckUser.asp?UserName=" + RegForm.UserName.value ,"Person_CheckUser","");
}
person_checkUser.asp 页面
If Qsite.IsValidUserName(UserName) = True Then
response.write "温馨提醒:\n\n·用户名称只能是字母,数字或下划线"
End If
它在中间加了一个这样的页面(person_checkUser.asp 页面)