Ma scusate, ma la pagina dopo che centra ?? è li il controllo del dato presente o meno... e è quello che devo eliminare... Il redirect alla pagina dopo deve avvenire come se il dato lo avesse trovato...Comunque ecco la pag dopo:

<%
mail = Session("QUIZMAIL")
pass = Session("PWD")
esiste = "no"
Set dwhfDB = Server.CreateObject("ADODB.Connection")
dwhfDB.Open "Provider=Microsoft.Jet.OLEDB.4.0;Persist Security Info=False;Data Source=" & Server.MapPath(".\..") & "\mdb-database\Quizzone.mdb"
sql = "select * from Utenti where Mail = '" & mail & "' and Data='" & FormatDateTime(Now,2) & "'"
set rs = dwhfDB.Execute(sql)
if rs.eof then
sql = "select * from Utenti where Mail = '" & mail & "'"
set rs = dwhfDB.Execute(sql)
if rs.eof then
dwhfDB.Close
response.redirect "domanda.asp"
else
if lcase(rs.fields("Pass"))<>pass then
esiste = "pwd"
else
dwhfDB.Close
response.redirect "domanda.asp"
end if
end if
else
esiste = "si"
end if
dwhfDB.Close

%>