<script>
function expireSession()
{
window.location = "login.jsp";
}
setTimeout('expireSession()', <%= request.getSession().getMaxInactiveInterval() * 1000 %>);
</script>
구글링 합시다.
<script>
function expireSession()
{
window.location = "login.jsp";
}
setTimeout('expireSession()', <%= request.getSession().getMaxInactiveInterval() * 1000 %>);
</script>
구글링 합시다.