Hi,
I need to implement a sample Session Timeout in ASP.NET which is as required below
1. The User opens up a Page say (abc.aspx) and locks the Page(setting a flag in database) if he is editing it. This lock happens if he edits any of the fields on that Page. ( I achieved this using JQuery)
2. Now when the user remains idle for a lot of time and session timeout period has expired(20 mins), I need to do two things
Display a timer counter to user about remaining session time with Extend Session or cancel Session buttons
when the timer (session) expires, unlock the request in the Database (reset the flag in DB) and stay or move away from the Page(abc.aspx) to Home Page
Displaying a counter I guess could e done using some Javascript etc.. but not sure how though. I have Windows authentication in my Web Application.
I couldn't find a complete Tutorial that does this, can someone help with a comprehensive answer. ...
Go to the complete details ...