Click here to Skip to main content
15,885,216 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: FIXED HEADER AND FOOTER IN MASTER PAGE-WITHOUT REFRESH ON MENU CLICK Pin
jkirkerx30-Nov-11 12:03
professionaljkirkerx30-Nov-11 12:03 
QuestionHow to Access VB class from c# class which both Classes in App_code folder Pin
Member 282342130-Nov-11 0:35
Member 282342130-Nov-11 0:35 
AnswerRe: How to Access VB class from c# class which both Classes in App_code folder Pin
AmitGajjar30-Nov-11 1:28
professionalAmitGajjar30-Nov-11 1:28 
GeneralRe: How to Access VB class from c# class which both Classes in App_code folder Pin
Member 282342130-Nov-11 1:31
Member 282342130-Nov-11 1:31 
GeneralRe: How to Access VB class from c# class which both Classes in App_code folder Pin
AmitGajjar30-Nov-11 1:54
professionalAmitGajjar30-Nov-11 1:54 
GeneralRe: How to Access VB class from c# class which both Classes in App_code folder Pin
Member 282342130-Nov-11 1:57
Member 282342130-Nov-11 1:57 
GeneralRe: How to Access VB class from c# class which both Classes in App_code folder Pin
AmitGajjar30-Nov-11 4:59
professionalAmitGajjar30-Nov-11 4:59 
AnswerRe: How to Access VB class from c# class which both Classes in App_code folder Pin
David Asp30-Nov-11 10:31
David Asp30-Nov-11 10:31 
AnswerRe: How to Access VB class from c# class which both Classes in App_code folder Pin
jkirkerx30-Nov-11 11:52
professionaljkirkerx30-Nov-11 11:52 
QuestionASP.Net login control & IIS 5.1 Pin
sk_ko29-Nov-11 20:39
sk_ko29-Nov-11 20:39 
AnswerRe: ASP.Net login control & IIS 5.1 Pin
jkirkerx30-Nov-11 12:08
professionaljkirkerx30-Nov-11 12:08 
GeneralRe: ASP.Net login control & IIS 5.1 Pin
sk_ko30-Nov-11 13:53
sk_ko30-Nov-11 13:53 
GeneralRe: ASP.Net login control & IIS 5.1 Pin
jkirkerx30-Nov-11 14:46
professionaljkirkerx30-Nov-11 14:46 
Questionregarding crystalreports Pin
kalyan10qwerty29-Nov-11 18:04
kalyan10qwerty29-Nov-11 18:04 
AnswerRe: regarding crystalreports Pin
kalyan10qwerty29-Nov-11 18:18
kalyan10qwerty29-Nov-11 18:18 
QuestionAccess to the path is denied -when trying to delete files Pin
Ramkumar_S29-Nov-11 15:55
Ramkumar_S29-Nov-11 15:55 
AnswerRe: Access to the path is denied -when trying to delete files Pin
jkirkerx29-Nov-11 18:22
professionaljkirkerx29-Nov-11 18:22 
SuggestionRe: Access to the path is denied -when trying to delete files Pin
RaviRanjanKr1-Dec-11 9:03
professionalRaviRanjanKr1-Dec-11 9:03 
QuestionCREATE DATABASE permission error Pin
sk_ko29-Nov-11 15:45
sk_ko29-Nov-11 15:45 
AnswerRe: CREATE DATABASE permission error Pin
jkirkerx29-Nov-11 18:25
professionaljkirkerx29-Nov-11 18:25 
AnswerRe: CREATE DATABASE permission error Pin
AmitGajjar30-Nov-11 1:34
professionalAmitGajjar30-Nov-11 1:34 
QuestionWhat happens to abandoned or timed out sessions? Pin
Brady Kelly29-Nov-11 7:12
Brady Kelly29-Nov-11 7:12 
AnswerRe: What happens to abandoned or timed out sessions? Pin
David Mujica29-Nov-11 7:48
David Mujica29-Nov-11 7:48 
GeneralRe: What happens to abandoned or timed out sessions? Pin
Brady Kelly29-Nov-11 8:58
Brady Kelly29-Nov-11 8:58 
GeneralClarification Pin
David Mujica30-Nov-11 8:59
David Mujica30-Nov-11 8:59 
The two concepts I was trying to point you toward are:

Session Timeout - If the user does not refresh or request a page within the time-out period, the session ends.

Session Abandon - If you do not call the Abandon method explicitly, the server destroys these objects when the session times out.

From the above information, I believe we can conclude that you don't have to do anything special in your web application, the IIS server has a session timeout value default around 20 or 30 minutes after the timeout period, the inactive users will have their session ended and the IIS server will destroy the memory and resources allocated to that session.

Please correct me if I'm wrong, but that is how I understand it.
Cool | :cool:

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.