I have in my web application (asp.net) auto-refresh function that goes to the server and updates the displayed data. Every call (as I read and tested), reset the session timeout and therefore it never ends.
Is there any way to prevent from a specific call to extend the timeout?
Is there any way to check in the background from client-side if the user is still authenticated and if not to redirect him to login page?
I check in every ajax start, and if I get 403 error I redirect him. Can I do it without a real operation from the user?