Ciao a tutti,
ho un form in CDONTS che vorrei trasformare in CDOSYS che riporto sotto. In CDONTS funzionava ma con le nuove configurazione dei server è cambiato tutto. A dire il vero non sono molto capace :-( qualcuno può aiutarmi ?
Grazie per l'attenzione.
ho un form in CDONTS che vorrei trasformare in CDOSYS che riporto sotto. In CDONTS funzionava ma con le nuove configurazione dei server è cambiato tutto. A dire il vero non sono molto capace :-( qualcuno può aiutarmi ?
Grazie per l'attenzione.
ASP.net:
<!--#include file="../xxxxx/conn.asp"-->
<!--#include file="../xxxxx/connopencofigurazione.asp"-->
<%
':::::::::::::::::::::::::: Funzione per generare una password casuale :::::::::::::::::::::::::::::
Function Password_GenPass( nNoChars, sValidChars )
Const szDefault = "ABCDEFGHIJKLMNOPQRSTUVXYZ0123456789"
Randomize
If sValidChars = "" Then
sValidChars = szDefault
End If
nLength = Len( sValidChars )
For nCount = 1 To nNoChars
nNumber = Int((nLength * Rnd) + 1)
sRet = sRet & Mid( sValidChars, nNumber, 1 )
Next
Password_GenPass = sRet
End Function
'::::::::::: Fine Funzione per la password casuale
ControllaAzione = request("Modulo")
Select case ControllaAzione
case "Registrazione"
'::::::::::: Fisso il problema dell'apostrofo con Function FixQuotes
Function FixQuotes(strTxt)
FixQuotes = Replace(strTxt, "'", "''")
End Function
sOtherId = Password_GenPass( 10, "" )
username = FixQuotes(request.form("username"))
email = FixQuotes(request.form("email"))
Nome = FixQuotes(request.form("Nome"))
Cognome = FixQuotes(request.form("Cognome"))
Citta = FixQuotes(request.form("citta"))
provincia = FixQuotes(request.form("provincia"))
cap = FixQuotes(request.form("cap"))
telefono = FixQuotes(request.form("telefono"))
Fax = FixQuotes(request.form("Fax"))
Via = FixQuotes(request.form("Via"))
Home = FixQuotes(request.form("home"))
IP = Request.ServerVariables("REMOTE_ADDR")
'::::::::::: Leggo i dati nel Database per assicurarmi che la password
'::::::::::: ho l'username ed E-mail non siano già presenti nel database
Set RS = Server.CreateObject("ADODB.Recordset")
SQL = "SELECT passw FROM Utenti WHERE passw='"&sOtherId&"' or username='"& username &"'"
RS.open sql,Conn
If not RS.BOF Then
ErrorMessage = "<P><B><center><font size=""3"" face=""Arial""><font color=""Red"">Attenzione!! <br><br>Username già scelto</font></B></center></P>"
Else
Set RS = Server.CreateObject("ADODB.Recordset")
SQL = "SELECT username FROM Annunci WHERE username='"& username &"'"
RS.open sql,Conn
If not RS.BOF Then
ErrorMessage = "<P><B><center><font size=""3"" face=""Arial""><font color=""Red"">Attenzione!! <br><br>Username già scelto</font></B></center></P>"
Else
Set RS = Server.CreateObject("ADODB.Recordset")
SQL = "SELECT email FROM Utenti WHERE email='"& email &"'"
RS.open sql,Conn
If not RS.BOF Then
ErrorMessage = "<P><B><center><font size=""3"" face=""Arial""><font color=""Red"">Attenzione!!<br><br>email presente nel database</font></B></center></P>"
Else
'::::::::::: Se tutto è OK inserisco i nuovi dati nel database
if rs.eof and rs.bof then
Set RS = Server.CreateObject("ADODB.Recordset")
SQLL= "SELECT username, passw, nome, email, cognome, citta, provincia, cap, telefono, fax, via, DataIscrizione, home, IP_Utente FROM utenti"
RS.Open SQLL,conn,2,3
RS.AddNew
RS("username") = FixQuotes(request.form("username"))
RS("passw")= sOtherId
RS("email")= FixQuotes(request.form("email"))
RS("Nome")= FixQuotes(request.form("Nome"))
RS("cognome")= FixQuotes(request.form("Cognome"))
RS("Citta")= FixQuotes(request.form("citta"))
RS("provincia")= FixQuotes(request.form("provincia"))
RS("cap")= FixQuotes(request.form("cap"))
RS("telefono")= FixQuotes(request.form("telefono"))
RS("Fax")= FixQuotes(request.form("Fax"))
RS("Via")= FixQuotes(request.form("Via"))
RS("home")= FixQuotes(request.form("home"))
RS("IP_Utente")= IP
RS("DataIscrizione")= Now()
RS.Update
'::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
': Conferma email :
'::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
strMsgHeader = "Ciao " & FixQuotes(request.form("Nome")) & " " & FixQuotes(request.form("Cognome")) & vbCrLf & vbCrLf
strMsgHeader = strMsgHeader & "La registrazione è stata efettuata. " & vbCrLf & vbCrLf
strMsgHeader = strMsgHeader & "Questi sono i dati per effettuare il Login" & vbCrLf & vbCrLf
strMsgHeader = strMsgHeader & "Username: "& FixQuotes(request.form("username")) & vbCrLf
strMsgHeader = strMsgHeader & "Password: "& sOtherId & vbCrLf & vbCrLf& vbCrLf
strMsgHeader = strMsgHeader & "Clicca per accedere al Login : " & ServerURL & "login.asp" & vbCrLf & vbCrLf
strMsgHeader = strMsgHeader & "----------------------------------------------------" & vbcrlf
strMsgHeader = strMsgHeader & "Powered by "& Live_server & vbcrlf
strMsgHeader = strMsgHeader & Organizzazione
On error resume next
Set Mail = Server.CreateObject("CDONTS.NewMail")
Mail.MailFormat = html
Mail.from = R_emailRegitrazione
Mail.to = FixQuotes(request.form("email"))
Mail.Subject = R_OgEmailReg
Mail.Body = (strMsgHeader) & vbCrLf & vbCrLf & "** Original-IP:" & Request.ServerVariables("REMOTE_ADDR")
Mail.Importance = 2
Mail.Send
'::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
': Se è stata selezzionata la funzione di copia :
'::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
If R_CopiaemailRegitrazione = True Then
strMsgHeader = "Ciao " & FixQuotes(request.form("Nome")) & " " & FixQuotes(request.form("Cognome")) & vbCrLf & vbCrLf
strMsgHeader = strMsgHeader & "La registrazione è stata efettuata. " & vbCrLf & vbCrLf
strMsgHeader = strMsgHeader & "Questi sono i dati per effettuare il Login" & vbCrLf & vbCrLf
strMsgHeader = strMsgHeader & "Username: "& FixQuotes(request.form("username")) & vbCrLf
strMsgHeader = strMsgHeader & "Password: "& sOtherId & vbCrLf & vbCrLf& vbCrLf
strMsgHeader = strMsgHeader & "Clicca per accedere alla pagina Login : " & ServerURL & "login.asp" & vbCrLf & vbCrLf
strMsgHeader = strMsgHeader & "----------------------------------------------------" & vbcrlf
strMsgHeader = strMsgHeader & "Powered by "& Live_server & vbcrlf
strMsgHeader = strMsgHeader & Organizzazione
On error resume next
Set Mail = Server.CreateObject("CDONTS.NewMail")
Mail.MailFormat = html
Mail.from = R_emailRegitrazione
Mail.to = R_emailRegitrazione
Mail.Subject = R_OgEmailReg
Mail.Body = (strMsgHeader) & vbCrLf & vbCrLf & "** Original-IP:" & Request.ServerVariables("REMOTE_ADDR")
Mail.Importance = 2
Mail.Send
End IF
RS.Close
Set Rs = nothing
Conn.close
Set Conn = nothing
Response.Redirect("registrazioneok.asp")
End if
End if
End if
End if
end select
%>
<HTML>
<HEAD>
</HEAD>
<BODY>
</BODY>
</html>
Ultima modifica di un moderatore: