ASP判断数据库中用户名重名
<!--#includefile="conn.asp"--><%Dimusername,passwordusername=request.form("username")...
<!--#include file="conn.asp"-->
<%
Dim username,password
username=request.form("username")
password=request.form("password")
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>验证注册</title>
</head>
<body>
<%
Set rs=server.createobject("adodb.recordSet")
strSql="select * from login where user='"&username&"'"
rs.open strSql,con,1,3
if not rs.EOF and not rs.BOF then
response.write "重名!"
else
rs.addNew
rs("user")=username
rs("pass")=password
rs.update
rs.close
con.close
set rs=nothing
set con=nothing
response.write "注册成功!"
end if
%>
</body>
</html>
为什么我不管怎么输入用户名都不执行if not rs.EOF and not rs.BOF then
response.write "重名!"这个语句呢
也就是说我每次注册他都会去插入到数据库,根本不在页面进行判断,直接插入到数据库后再判断 展开
<%
Dim username,password
username=request.form("username")
password=request.form("password")
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>验证注册</title>
</head>
<body>
<%
Set rs=server.createobject("adodb.recordSet")
strSql="select * from login where user='"&username&"'"
rs.open strSql,con,1,3
if not rs.EOF and not rs.BOF then
response.write "重名!"
else
rs.addNew
rs("user")=username
rs("pass")=password
rs.update
rs.close
con.close
set rs=nothing
set con=nothing
response.write "注册成功!"
end if
%>
</body>
</html>
为什么我不管怎么输入用户名都不执行if not rs.EOF and not rs.BOF then
response.write "重名!"这个语句呢
也就是说我每次注册他都会去插入到数据库,根本不在页面进行判断,直接插入到数据库后再判断 展开
若以下回答无法解决问题,邀请你更新回答
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询