BubikolRamios
03-07-2009, 08:25 PM
in jsp;
<%
if (sessionUser == null)
{
%>Session expired !<%
return;
}
%>
ok, before return I can redirect to main page which picks up cookie (autologon) if there and the whole thing gets restored, at least partialy.
The question is, how can I push one page in beetween saying:
Session terminated, you will be redirected to main page in 5,4... seconds.
Without using js.
<%
if (sessionUser == null)
{
%>Session expired !<%
return;
}
%>
ok, before return I can redirect to main page which picks up cookie (autologon) if there and the whole thing gets restored, at least partialy.
The question is, how can I push one page in beetween saying:
Session terminated, you will be redirected to main page in 5,4... seconds.
Without using js.