asp判断数据库已存在这条数据提示重新输入
比如说我要输入一条产品信息,当我输入完信息后进行判断,如果数据库中已经存在这个产品的product_no,那么刚提示重新输入.不知道这个判断语句要怎么写...
比如说我要输入一条产品信息,当我输入完信息后进行判断,如果数据库中已经存在这个产品的product_no,那么刚提示重新输入.不知道这个判断语句要怎么写
展开
3个回答
展开全部
你打开数据库的时候 字段按这个字段来打开.如.
product_no=request.form("product_no")
rs.open"select * from 表名 where product_no ='"&product_no&"'",conn,1,3
if not rs.eof then
response.write "<script>alert('该记录已存在!');history.back();</script>"
response.end
else
rs.open"select * from 表名 ",conn,1,3
rs.addnew
rs("product_no")=product_no
rs.update
end if
product_no=request.form("product_no")
rs.open"select * from 表名 where product_no ='"&product_no&"'",conn,1,3
if not rs.eof then
response.write "<script>alert('该记录已存在!');history.back();</script>"
response.end
else
rs.open"select * from 表名 ",conn,1,3
rs.addnew
rs("product_no")=product_no
rs.update
end if
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select product_no form 表格 where product_no =request("product_no ")
if not rs.eof then
response.write("有重复,请重新输入!")
end if
if not rs.eof then
response.write("有重复,请重新输入!")
end if
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
product_no=request.queryString("product_no")
set rs=conn.execute("select product_no form 表格 where product_no='"&product_no&"'")
if rs.eof and rs.bof then
不存在代码
else
存在代码
end if
set rs=conn.execute("select product_no form 表格 where product_no='"&product_no&"'")
if rs.eof and rs.bof then
不存在代码
else
存在代码
end if
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询