怎样在提交数据时检测数据是否已经存在?
请问在asp中,在提交数据时怎么样检测数据库中已经存在该记录.....并提示数据已经存在....给点代码......谢谢........
在提交数据前进行检测,如注册前检测用户名:
<!--#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
---------------
-----
%>