蓝雨 发表于 2007-11-20 12:10:57

注册时使用中文注册

<P>论坛注册用户名改为中文注册 <BR>reg.asp 文件中找到 :<BR>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<BR>Dvbbs.AddErrCode(19)<BR>Exit sub<BR>End If<BR>在其下面加入 : </P>
<P><BR>Dim Ndht_CHName<BR>Ndht_CHName = True<BR>For i = 1 To Len(UserName)<BR>If Asc(Mid(UserName, i, 1)) >=0 Then<BR>Ndht_CHName = False<BR>Exit For<BR>End If<BR>Next<BR>If Not Ndht_CHName Then<BR>Response.redirect \"showerr.asp?ErrCodes=<li>注册名必须为中文!&action=OtherErr\"<BR><BR><BR>End If</P>
页: [1]
查看完整版本: 注册时使用中文注册