Logg off users with session.timeout
-
I wonder if it is possible from a button click or a link to logg off (some unwanted logged on users or all users) in an asp.net application with session.timeout or another way?Thankfull for any code example/url
-
I wonder if it is possible from a button click or a link to logg off (some unwanted logged on users or all users) in an asp.net application with session.timeout or another way?Thankfull for any code example/url
If you are storing Sessions on SQL just delete their SessionID and they'll be out!
-
If you are storing Sessions on SQL just delete their SessionID and they'll be out!
Do you mean that I should store the users sessionID in a database Table when they logg into the application and then delete these from the database (delete from Tablename , statement)? I did not make any changes in my Web.config file. Do I have to change the way I'm storing sessions there to make this work?Thanks for your help