vorrei sapere come poso fare x legare il livello utente all'utente dopo il login, nel db ho userid pass e livello qnd fa il login poi ho la stringa strUserName in cui ho l'utente come faccio a legarlo cn il livello in modo ke nelle pagine successive al login l'utente può vedere o nn può vedere la pagina dipende il livello ke ha?



<%
'Dimension variables
Dim adoCon 'Database Connection Variable
Dim strCon 'Holds the Database driver and the path and name of the database
Dim rsCheckUser 'Database Recordset Variable
Dim strAccessDB 'Holds the Access Database Name
Dim strSQL 'Database query sring
Dim strUserName 'Holds the user name

'Initalise the strUserName variable
strUserName = Request.Form("txtUserName")

'Check the database to see if user exsits and read in there password
'Initialise the strAccessDB variable with the name of the Access Database
strAccessDB = "users"

'Create a connection odject
Set adoCon = Server.CreateObject("ADODB.Connection")

'Database connection info and driver
strCon = "DRIVER={Microsoft Access Driver (*.mdb)};uid=;pwd=letmein; DBQ=" & Server.MapPath(strAccessDB)


'Set an active connection to the Connection object
adoCon.Open strCon

'Create a recordset object
Set rsCheckUser = Server.CreateObject("ADODB.Recordset")

'Initalise the strSQL variable with an SQL statement to query the database
strSQL = "SELECT tblUsers.Password FROM tblUsers WHERE tblUsers.UserID ='" & strUserName & "'"

'Query the database
rsCheckUser.Open strSQL, strCon

'If the recordset finds a record for the username entered then read in the password for the user
If NOT rsCheckUser.EOF Then

'Read in the password for the user from the database
If (Request.Form("txtUserPass")) = rsCheckUser("Password") Then

'If the password is correct then set the session variable to True
Session("blnIsUserGood") = True
'la stringa di sotto la uso nelle pagine successice x stampare a video il nome dell'utente
Session("ute_log") = strUserName

'Close Objects before redirecting
Set adoCon = Nothing
Set strCon = Nothing
Set rsCheckUser = Nothing

'Redirect to the authorised user page and send the users name
Response.Redirect"authorised_user_page.asp?name=" & strUserName
End If
End If

'Close Objects
Set adoCon = Nothing
Set strCon = Nothing
Set rsCheckUser = Nothing

'If the script is still running then the user must not be authorised
Session("blnIsUserGood") = False

'Redirect to the unautorised user page
Response.Redirect"unauthorised_user_page.htm"
%>


vorrei aggiungerlo qui dove fa il check dell'utente ma nn so come farlo, sxo qulkuno mi può aiutare

17 messaggi dal 15 febbraio 2003
Ciao io generalmente creo una variabile di sessione con il valore che identifica il livello dell'utente e metto dei controlli nelle pagine che deve vedere o meno tramite dei semplici if

ad esempio

if session("utente")=livello then

vedi ciò che riguarda livello

else

messagio che non può vedere o più semplicemente nulla se
nella pagina ci sono cose che quel livello può vedere e altre no

end if

spero di essere stato chiaro

Ciao
dove controllo i livelli ho messo ke se è admin
Session("utente") = 1

poi nella pagine successive metto


<% if Session("utente") = 0 then

Response.Redirect"menumembro.asp"
end if
%>


e funziona, grazie

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.