%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
Bustamante Publicidad
<%
SQL="SELECT * FROM tabla "
Set rs = Conn.Execute(SQL)
If Not rs.EOF Then
LinkCount = 0
a=0
Do Until rs.EOF
m=rs("activate")
if m = 0 then
response.redirect("p.htm")
end if
rs.MoveNext
Loop
rs.Close
Set rs = Nothing
End If
Conn.Close
Set Conn = Nothing
%>