📄 user_checkusername.asp
字号:
<!--#include file=INC/skin.asp-->
<!--#include file=INC/txl_userfun.asp-->
<%
'on error resume next
dim const_txl_HomeUrl,errstr,usernameflag,GBL_CHK_TempStr,username
errstr=""
username=Request.QueryString("username")
const_txl_HomeUrl=""
OpenDatabase
usernameflag=checkfrmusername(username)
if not usernameflag then
printmsg GBL_CHK_TempStr
else
if checkusername(username) then
GBL_CHK_TempStr="<font color=green>恭喜您,该用户名可以注册!</font>"
printmsg GBL_CHK_TempStr
else
GBL_CHK_TempStr="<font color=red>对不起,该用户名已经被别人注册了!</font>"
printmsg GBL_CHK_TempStr
end if
end if
CloseDatabase
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -