这个问题只能注册时限制纯数字的用户
打开api/qq/qqbind.asp,看了下已经有限制了啊
lseIf Action="doreg" Then
Dim UserNameLimitChar:UserNameLimitChar=Cint(KS.Setting(29))
Dim UserNameMaxChar:UserNameMaxChar=Cint(KS.Setting(30))
Dim EnabledUserName:EnabledUserName=KS.Setting(31)
UserName=KS.R(KS.S("UserName"))
If UserName = "" Or KS.strLength(UserName) > UserNameMaxChar Or KS.strLength(UserName) < UserNameLimitChar Then
KS.Die ("<script>alert('请输入用户名(不能大于" & UserNameMaxChar & "小于" & UserNameLimitChar & ")');history.back();</script>")
Elseif isnumeric(UserName) then
KS.Die ("<script>alert('对不起,会员名不能是纯数字!');history.back();</script>")
Elseif KS.HasChinese(username) and KS.ChkClng(KS.Setting(175))="0" then
KS.Die("<script>alert('对不起,系统设置用户名不能含有中文!');history.back();</script>")
ElseIF KS.FoundInArr(EnabledUserName, UserName, "|") = True Then