118 messaggi dal 14 marzo 2001
ho questo codice il server mi dice che non riconosce la variabile conn: cosa potrebbe essere???

saluti

Gianca

Dim RS, bolAlreadyexists
If ((Request.Form("username") = "") OR (Request.Form("Password") = "") _
OR (Request.Form("email") = "") OR (Request.Form("nome") = "") _
OR (Request.Form("cognome") = "")) Then
Response.Write "<A HREF='registrazione.htm'>"
Response.Write "Devi riempire tutti i campi"
Response.write "</A>"
Else
bolalreadyExists = False
SET RS = Server.Createobject("ADODB.Recordset")
RS.Open "utenti", conn , adlockOptimistic, adCmdTable
Do while Not (RS.EOF OR Bolalreadyexists)
If (strComp(RS("Username"), Request.Form("username"), _
VbTextCompare) = 0) Then
Response.Write "<A HREF='registrazione.htm'>"
response.Write "Username già presente riprova"
Response.Write "</A>"
Bolalready = True
End if
If (strComp(RS("Email"),Request.Form("Email"), _
VbTextCompare) = 0) Then
Response.Write "<A HREF='registrazione.htm'>"
response.Write "indirizzo Email già presente inseriscine un altro"
Response.Write "</A>"
Bolalready = True
End If
Loop
If Not BolalreadyExists Then
RS.AddNEW
RS("Nome") = Request.Form("Nome")
RS("Cognome") = Request.Form("Cognome")
RS("email") = Request.Form("email")
RS("Username") = Request.Form("Username")
RS("Password") = Request.Form("Password")
RS.Update
Response.Write"GRAZIE PER LA TUA REGISTRAZIONE"
End if
RS.Close
SET RS=Nothing
End If
conn.Close
Set conn=Nothing
%>


59 messaggi dal 06 maggio 2001
Scusa ma non riesco a vedere la connessione al database, dove sta?

Andrea Rinaldi
Webmaster Zeder Network & Advertising
http://www.zeder.it
webmaster@zeder.it

Andrea Rinaldi
Webmaster Universal Site S.r.l.
webmaster@universalsite.it
118 messaggi dal 14 marzo 2001
il file di connessione è un include ma è ok ho provato con altre pagine


Torna al forum | Feed RSS

ASPItalia.com non è responsabile per il contenuto dei messaggi presenti su questo servizio, non avendo nessun controllo sui messaggi postati nei propri forum, che rappresentano l'espressione del pensiero degli autori.