![]() |
|
|
|||||||
![]() |
ASP Net - Windows Authentication Logout |
|
|
Thread Tools | Search this Thread |
|
|
#1 |
|
Hello All:
I am using Windows Authentication in my VB/ASP.NET Intranet Web Application. How do I create a method that will release the authentication Token, so the user will no longer have access to any of the resources on the site? Thanks Stuart Stuart Shay |
|
|
|
|
#2 |
|
Posts: n/a
|
I don't think you can disable the "Token" on the fly. To dynamically
control access, store those who are allowed in a table and those who are not allowed in another table - or separate views of the same table - or an array or arraylist and use something like this: foreach(string user in BannedUsers) { if (user == User.Identity.Name) { throw new Exception ("You are not authorized"); } } You could do a PrincipalPermission.Demand() on the user against a list of users, but I don't think it buys you much in this case. The concept there is you create a PermissionPrincipal: bool allowed = false; foreach(string user in AllowedUsers) { try { PrincipalPermission pp = new PrincipalPermission(null, user); pp.Demand(); allowed = true; } catch(Exception ex) { } } if (!allowed) throw new Exception ("You're not allowed here!"); Hope this helps Dale If the "Stuart Shay" <> wrote in message news:#... > Hello All: > > > > I am using Windows Authentication in my VB/ASP.NET Intranet Web Application. > > > > How do I create a method that will release the authentication Token, so the > user will no longer have access to any of the resources on the site? > > > > Thanks > > Stuart > > > > > > Dale |
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to Reset / Recover Forgotten Windows NT / 2000 / XP / 2003 Administrator Password | wskaihd | Software | 2 | 11-17-2009 02:01 AM |
| How to activate Remote Assistance with XP using Windows Live Messenger | Oziisr | General Help Related Topics | 0 | 02-01-2008 04:45 PM |
| Computer Security | aldrich.chappel.com.use@gmail.com | A+ Certification | 0 | 11-27-2007 02:11 AM |
| MCITP: Enterprise Support Technician | MileHighWelch | MCITP | 1 | 06-19-2007 10:25 PM |
| Re: Question about MS critical updates | John Coode | A+ Certification | 0 | 06-30-2004 06:08 PM |