santino il codice della pagina è questo:

codice:
<%@LANGUAGE="VBSCRIPT"%>
<html xmlns="http://www.w3.org/1999/xhtml">
<HEAD>
<TITLE>Aree private nel sito >>INVIAMI LA PASSWORD </TITLE>
</HEAD>

<BODY>



<%
dim username
dim password
dim email
dim dbfile
dim db
dim tabella
dim sql

username=request.form("username")

%>

<%
dbfile=Server.mappath("reg_utenti.mdb")
set db=server.createobject("adodb.connection")
db.connectionstring="provider=microsoft.jet.oledb.4.0;" & "data source=" & dbfile
db.open
%>

<%
sql=" SELECT email, password, username FROM utenti WHERE username ="
sql=sql & "'" & username & "';"
set tabella=server.createobject("adodb.recordset")
tabella.open sql,db
if tabella.eof then
Response.write "

"
Response.write "<center>"
Response.write "<font face=Tahoma size=2 color=#000099>Email Inesistente!</font>

"
Response.write "<font face=Tahoma size=2 color=#000099>Forse non hai scritto la Username in modo corretto. Torna indietro</font>

"
Response.write "<font face=Tahoma size=2 color=#000099>Oppure non hai effettuato la registrazione.</font>

"
Response.write "</center>"
Response.write "</p>"
%>


<%
else
  password=tabella.fields("password")
  mail=tabella.fields("email")
%>

<%
  set email=server.createobject("cdonts.newmail")
%>

<%
  email.From = "Nome_Sito" 
  email.To = mail 
  email.Subject = "Invio password" 
  email.Body = "La tua password per accedere all'area privata è: " & password &VBCrlf&VBCrlf&VBCrlf
  'email.Body = email.Body & "************************************************" &VBCrlf&VBCrlf
  'email.Body = email.Body &"http://www.extro.tagonline.it"
  email.Send() 
  Set email = Nothing
Response.write "<p align = center>"
Response.write "<font face=Tahoma size=2 color=#000099>Username e Password ti sono stati inviati  all'indirizzo email  specificato al momento della registrazione.</font>

"
Response.write "<font face=Tahoma size=2 color=#000099>Torna alla Home Page</font>"
Response.write "</p>" 
%>



</p>


</p>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
      <td height="35" align="right" valign="bottom"><font size="1" face="Tahoma"><a href="http://www.extrowebsite.com">.:
            EXTRO WEB SITE :. </a></font></td>
    </tr>
  </table>

</BODY>
</HTML>
<%
end if
tabella.close()
db.close()
Set tabella=Nothing
Set db=Nothing
%>
vedi un pò tu se puoi aiutarmi....raie cmq