prova.asp
codice:
<%
Dim Utente
Dim Utente_numRows
Set Utente = Server.CreateObject("ADODB.Recordset")
Utente.ActiveConnection = MM_Database_STRING
Utente.Source = "SELECT * FROM Utente WHERE nickname ='" & Session("MM_username") & "'"
Utente.CursorType = 0
Utente.CursorLocation = 2
Utente.LockType = 1
Utente.Open()
Utente_numRows = 0
Response.Redirect("prova1.asp?NomeUtente="& Session("MM_username") & "")
%>
prova1.asp
codice:
<%
str_NomeUtente = request.querystring("NomeUtente")
response.write str_NomeUtente
%>
Spero d'aver capito, dopodichè rinuncio...