asp如何验证重复记录
如题,有一个表guestbook,有name和tel字段。在输入数据的时候,如果name里,有这个名字,就不输入;如果没有,就输入到数据库。怎么写这段代码?...
如题,有一个表guestbook,有name和tel字段。在输入数据的时候,如果name里,有这个名字,就不输入;如果没有,就输入到数据库。怎么写这段代码?
展开
2个回答
展开全部
<%
name=request.form("name")
set rs=server.createobject("ADODB.Recordset")
sql="select * from guestbook where name='"&name&"'"
rs.open sql,conn,3,3
if not rs.eof then
response.write"<script>alert('数据库中已存在此名字!请重新输入');history.go(-1)</script>"
else
rs.addnew
rs("name")=name
rs.update
rs.close
set rs=nothing
response.write"<script>alert('新增成功!');window.location='新增页面.asp'</script>"
end if
%>
name=request.form("name")
set rs=server.createobject("ADODB.Recordset")
sql="select * from guestbook where name='"&name&"'"
rs.open sql,conn,3,3
if not rs.eof then
response.write"<script>alert('数据库中已存在此名字!请重新输入');history.go(-1)</script>"
else
rs.addnew
rs("name")=name
rs.update
rs.close
set rs=nothing
response.write"<script>alert('新增成功!');window.location='新增页面.asp'</script>"
end if
%>
展开全部
在文件wordsdicadd.asp的第32行插入
strsql = "SELECT * FROM [wordsdic] where EnglishWord = '"&Trim(x_EnglishWord)&"'"
rs.Open strsql, conn, 1,1
if not (rs.eof or rs.bof) then
Response.Write("<script>alert('对不起,单词"&Trim(x_EnglishWord)&"已经存在,请不要重复添加。');history.back();</script>")
Response.End()
end if
在第80行写入rs.close()
就行了。
strsql = "SELECT * FROM [wordsdic] where EnglishWord = '"&Trim(x_EnglishWord)&"'"
rs.Open strsql, conn, 1,1
if not (rs.eof or rs.bof) then
Response.Write("<script>alert('对不起,单词"&Trim(x_EnglishWord)&"已经存在,请不要重复添加。');history.back();</script>")
Response.End()
end if
在第80行写入rs.close()
就行了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询