Has anyone found a way to redirect to the login page on a callback if a users authenticated session expires?
With an update panel, if it executes a callback and the user isn't authenticated it throws an exception. Anyone else experience this?
Printable View
Has anyone found a way to redirect to the login page on a callback if a users authenticated session expires?
With an update panel, if it executes a callback and the user isn't authenticated it throws an exception. Anyone else experience this?
Then you can catch the exception in your callback function, can't you? Just check for the exception each time and if it occurs, you can
document.location.href='login.aspx';