<%
nowMAC=xx1-xx1-xx1
set rs=conn.execute("select * from MAC where MAC='"&nowMAC&"'")
if not rs.eof and not rs.bof then
response.write("OK")
else
response.write("NOT")
end if
%>
sql="select * from MAC where MAC='xx1-xx1-xx1'"
rs.open sql,conn,1,1
if not rs.eof and not rs.bof then
response.write("OK")
else
response.write("NOT")
end if
rs.close
set rs=nothing