Hi @compile ,
I suggest you can try Javascript as redirecting from the server side requires a postback.
You can check the ses sion through the controller and return a value to determine if the ses sion ended.
You can refer to the code below:
Controller
public JsonResultSessionInfo()
{
if (Session["LoginUserName"] == null)
{
returnJson(true, JsonRequestBehavior.AllowGet);
}
return Json(false, JsonRequestBehavior.AllowGet);
}
Best regards,
Lan Huang
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.