数据库同一个字段,添加的内容一样时则无法添加成功,该怎么解决啊?
数据库同一个字段,添加的内容一样时则无法添加成功,该怎么解决啊?
<%
rs.open"select * from testbiao where abc = '"&abc&"'",conn,1,1
if not rs.eof then
rs.close
set rs = nothing
conn.close
set conn = nothing
response.write "一样了"
response.end
end if
rs.close
'可以了。
%>