Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
478 views

ASP.NET MVC: Access session data in Session_End or in event just before

I've already seen a similar question to this one posted here. I have essentially the same question, but with a small twist. I'm trying to access Session information from within the Session_End ...
1
vote
1answer
240 views

MVC 2 Antiforgerytoken session issue

I've implemented the antiforgerytoken in my MVC 2 app. I have also added a machine key in the web.config. When the session expires and I try and do a post it throws a A required anti-forgery token ...
1
vote
1answer
392 views

Session_End called multiple times in the middle of a session

Am I using Session_End incorrectly? In my application, I have a cache to speed up page loads, it works quite well. Recently, someone suggested to me that I was leaking memory by never emptying it ...
0
votes
2answers
313 views

Regarding Session_End and Application_End methods in asp.net

I'm trying to implement a class (lets call it CustomerConnection class) which implements System.Web.HttpApplication interface. I tried to implement two events session_end and application_end events in ...
0
votes
2answers
54 views

Session_ONEnd on PHP

I have recently started programming in PHP. I am building a cart in PHP. I have my products locked in cart when someone adds it to their cart. I need to unlock those products when the specific user ...