#12005/6/1 17:32:39
输入表单上有“用户名”,“型号”,“供应商”等,当操作员向这些文本域填入数据时与数据库中的字段比较,如表单上的“用户名”与数据库中的用户名字段比较,如有重复,就提示,没有重复就写入数据库,写一个我会,但是几个文本域与数据库字段比较应如何写?用多个SQL语句吗?我用的是SQLSERVER数据库
set rs=server.CreateObject("ADODB.RecordSet")
sql="SELECT wlname FROM wl WHERE wlname='"&request.Form("txtwlname")&"'
rs.open sql,conn,1,3
if not rs.bof and not rs.eof then
response.write "重复"
else
rs.addnew
rs(1)="........"
rs.update
end if
rs.close