Is there anyway to implement this.If admin block a user then session of that current user should be expired in ASP.NET
views:
24answers:
1
A:
You could implement a custom membership provider which provides this functionality. This is as far as I know the only way, other than hacking into .NET and remove their serverside cookie. But that wouldn't be recommended.
The ASP.NET Membership is there to implement this. More info on: http://msdn.microsoft.com/en-us/library/f1kyba5e.aspx
Snake
2010-07-12 05:26:13
`serverside cookie` ? when was this born ?
this. __curious_geek
2010-07-12 05:29:08
@this.__courious_geek: http://msdn.microsoft.com/en-us/library/ms972429.aspx Session state, the part of the session at the server side :)
Snake
2010-07-12 09:40:19