📄 register.asp
字号:
<%@LANGUAGE="VBScript" CODEPAGE="936"%>
<!--#include file="CONN.asp" -->
<!--#include file="MD5.asp" -->
<!--#include file="CHAR.asp" -->
<%
if request.ServerVariables("REQUEST_METHOD")="POST" then
username=trim(replace(request("username"),"'",""))
if len(username)<3 or len(username)>20 then
errmsg=errmsg+"<br>"+"<li>请输入您的用户名(长度在3-20之间)。"
founderr=true
end if
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,"
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -