论坛注册用户名改为中文注册 reg.asp 文件中找到 : If Instr(username,\"=\")>0 or Instr(username,\"%\")>0 or Instr(username,chr(32))>0 or Instr(username,\"?\")>0 or Instr(username,\"&\")>0 or Instr(username,\";\")>0 or Instr(username,\",\")>0 or Instr(username,\"\'\")>0 or Instr(username,\",\")>0 or Instr(username,chr(34))>0 or Instr(username,chr(9))>0 or Instr(username,\"?\")>0 or Instr(username,\"$\")>0 or Instr(username,\"|\")>0 Then Dvbbs.AddErrCode(19) Exit sub End If 在其下面加入 :
Dim Ndht_CHName Ndht_CHName = True For i = 1 To Len(UserName) If Asc(Mid(UserName, i, 1)) >=0 Then Ndht_CHName = False Exit For End If Next If Not Ndht_CHName Then Response.redirect \"showerr.asp?ErrCodes= 注册名必须为中文!&action=OtherErr\"
End If |