📄 checkhynumber.asp
字号:
<!-- #include file="include/adovbs.inc" -->
<!-- #include file="include/dataconn.asp" -->
<html>
<head>
<title>帐号检查</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body>
<%
regName=trim(request("regName"))
set rs=server.CreateObject("adodb.recordset")
sql ="select ID from hyclub where HyNumber='" & regName & "'"
rs.Open sql,conn
if rs.RecordCount>0 then%>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><p> </p>
<p><img src="Image/icon_l.gif" width="11" height="11"><font color="#FF0000">
很遗憾,你输入的登录帐号已经有人用了!</font></p></td>
</tr>
</table>
<%else%>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><p> </p>
<p><img src="Image/icon_l.gif" width="11" height="11"><font color="#FF0000">
</font><font color="#FF0000"><font color="#0066FF">恭喜,</font><font color="#0066FF">你输入的登录帐号可以使用!</font></font></p>
</td>
</tr>
</table>
<%end if%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -