Redirect to login page automatically after some time
Posted
by
ASD
on Stack Overflow
See other posts from Stack Overflow
or by ASD
Published on 2013-06-28T19:19:24Z
Indexed on
2013/06/29
10:21 UTC
Read the original article
Hit count: 179
How can we redirect to login page automatically after some time?
I have a requirement to redirect to login page if the current page is idle for 10 minutes in Java/JSP.
I tried to use <meta http-equiv="refresh" content="120;url=./login.html">
tag. This works only when I click on any link but not automatically after 2 mins(120secs).
Can anyone tell me how to redirect to login page automatically?
© Stack Overflow or respective owner