Non vorrei essere pedante, vi posto direttamente il codice così com'è, non è che me lo correggete che c'è qualcosa che non va?

codice:
<%@ LANGUAGE = JavaScript%>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Inserimento dati nel DB</title>

<%
	var ute = Request.Form("utente");
	var pass = Request.Form("pwd");
%>

</head>
<body>
<% 
	 var risposta;
	 var connessione = Server.CreateObject("ADODB.Connection");
    connessione.Open("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\\Temp\\dati.mdb");
    risposta = connessione.Execute("SELECT pwd FROM iscritti WHERE utente='"+ute+"'");
	 if (risposta.Eof == true)
	 {
%>

<h1>MI DISPIACE MA IL TUO INDIRIZZO email E LA password DIGITATA NON COINCIDONO</h1>


<%
	 }
	 
	else (risposta("pwd").Value == pass)
	 { 
	 
	 var effetto = "<h1>Riconoscimento effettuato</h1>
 Continua cliccando qui"
	 response.write (effetto)
%>

<!--<h1>Riconoscimeeeento effettuato</h1>

Continua cliccando qui-->

<% 			
	 }
	 connessione.Close();
 %>


</body>


</html>