| |
GeekInterview.com > Tech FAQs > Programming > ASP.NET
| Print | |
Question: Session.abondon and Session.End
Answer: What is the difference between Session.abondon And session.End |
| July 07, 2008 13:25:09 |
#1 |
| raghulvarma |
Member Since: December 2007 Total Comments: 7 |
RE: Session.abondon and Session.End |
Session.Abandon-->Cancels the Current Session.To programmatically end current users session (for any reason) we can use Session.Abandon method.
Session.End-->A session ends if a user has not requested or refreshed a page in the application for a specified period. By default, this is 20 minutes. |
| |
Back To Question | |