Hi,
In my project I'm using session to maintain some complex type data. I want to clear that session if that
specified controller has not been hit for a specified
amount of time , need to clear that
specific session only that have been used in that controller
not all the entire user session .
Let say,
BusinessController has some ActionMethods like
Test1, Test2 .
The ActionMethod
Test1 has some Session like
Session["MyData"], Session["ListOfBusiness"] .
The ActionMethod
Test2 has some Session like
Session["MyData"], Session["ListOfBusiness"] .
I need to clear the session Session["MyData"], Session["ListOfBusiness"] only if
BusinessController has not been hit for some time.
Guna