grazie, ho scritto così, ma non cambia nulla:
codice:
strsql = "SELECT nome, email FROM tbl_login WHERE nome='" &request("nome")& "' OR email='" &request("email")& "'"
Set objRs = Server.CreateObject("ADODB.Recordset")
objRs.Open strsql, strconn, 3, 3
if not objRs.bof and not objRs.eof then
if objRs("nome") = nome and objRs("email") = email then
'e-mail esistente
response.write ("L'indirizzo " & objRs("email") & " è già registrato")
else
'user esistente
response.write ("La login " & objRs("nome") & " è già registrata")
end if
else
'costruisci password
password = genera_pwd()