What is the best way to show a message to user after session is expired?
By then, the user should be logged out and redirected to start page.
I can use javascript to redirect user to start page. I just want to show a message on start page.
What is the best way to show a message to user after session is
Share
In your JavaScript redirect add a querystring parameter to your redirect URL.
Then in your start page, you can have code to check the querystring and display a message if that’s the case.