Click here to Skip to main content
15,868,141 members
Please Sign up or sign in to vote.
2.00/5 (2 votes)
See more:
We use windows authentication in our applcation, we aren't handling the session_end event when user closes the browser. My applcation is a letter generation app, we are running the endurance test for 8 hours, we are closing the browser after creating each letter and opening the new ie window for creating new letters,My Question is, if session didn't get expire as soon as we close the browser, how abt the objects are they get unreferenced as soon as we close the window?
Posted
Comments
Sergey Alexandrovich Kryukov 25-Jun-12 12:01pm    
You need to tag application type to get a definitive answer. Is it ASP.NET? Something else? Tag it.
--SA

1 solution

No. And there is no such concept as "unreferencing". You might need to understand what garbage collection does (http://en.wikipedia.org/wiki/Garbage_collection_%28computer_science%29[^]), but it has nothing to do with session expiration.

Rather, you need to understand application cycle in ASP.NET:
http://msdn.microsoft.com/en-us/library/ms227435%28v=vs.100%29.aspx[^].

If this is not ASP.NET, please don't blame me, but read my comment to the question.

—SA
 
Share this answer
 
v2
Comments
Shahin Khorshidnia 25-Jun-12 12:32pm    
+5
Sergey Alexandrovich Kryukov 25-Jun-12 12:45pm    
Thank you, Shahin.
--SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900