标题:怎样在提交数据时检测数据是否已经存在?
只看楼主
favoriteran
Rank: 1
等 级:新手上路
帖 子:142
专家分:0
注 册:2006-3-10
 问题点数:0 回复次数:3 
怎样在提交数据时检测数据是否已经存在?
请问在asp中,在提交数据时怎么样检测数据库中已经存在该记录.....并提示数据已经存在....

给点代码......谢谢........
搜索更多相关主题的帖子: 数据 检测 
2006-04-25 09:04
danhaoran
Rank: 1
等 级:新手上路
帖 子:224
专家分:0
注 册:2005-10-1
得分:0 
<!--include file="conn.asp"-->
<%
a=request("a")
set rs=server.createobject("adodb.recordset")
sql="select * from table where a='"&a&"'"
rs.open sql,conn,1,1
if rs.recordcount>0 then
response.write("<script>alert('提示');window.location.href='XXXXXXX.asp';</script>")
response.end
else
...
end if
%>

2006-04-25 10:11
icecool
Rank: 9Rank: 9Rank: 9
等 级:贵宾
威 望:20
帖 子:1214
专家分:1366
注 册:2005-3-14
得分:0 

在提交数据前进行检测,如注册前检测用户名:
<!--#include file="conn.asp"-->
<%
user_name=request("user_name")
user_pass=request("user_pass")
set rs=conn.execute("select user_name from users where user_name='" & user_name &"'")

if not rs.eof and rs.bof then
response.write "该用户名存在,请返回重新填写!"
response.end
end if

---------------

-----

%>


http://toorup.3v.do
loading...
2006-04-25 11:13
icecool
Rank: 9Rank: 9Rank: 9
等 级:贵宾
威 望:20
帖 子:1214
专家分:1366
注 册:2005-3-14
得分:0 

早知有人在回复--

rrr


http://toorup.3v.do
loading...
2006-04-25 13:05



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-59915-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.737177 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved