Session Active Problem
-
hi in asp.net application one user is login then how many active session is created i am confused about that because iis performance moniter active session display 612 and my login user is only more than 50. also when i particuler user logout that time session active in not not decrease. thank you advance urgent please
-
hi in asp.net application one user is login then how many active session is created i am confused about that because iis performance moniter active session display 612 and my login user is only more than 50. also when i particuler user logout that time session active in not not decrease. thank you advance urgent please
pra.chaudhari wrote:
moniter active session display 612 and my login user is only more than 50. also when i particuler user logout that time session active in not not decrease.
How did implement the logout? can you please put the code for that section ?
cheers, Abhijit CodeProject MVP
-
pra.chaudhari wrote:
moniter active session display 612 and my login user is only more than 50. also when i particuler user logout that time session active in not not decrease.
How did implement the logout? can you please put the code for that section ?
cheers, Abhijit CodeProject MVP
when i login that time i remove the sesstion value 'loginpage page_load event code If Page.IsPostBack() = False Then l_objSessionMgr.RemoveAll() FormsAuthentication.SignOut() End If 'this is common function Public Sub RemoveAll() HttpContext.Current.Session.RemoveAll() End Sub