session超时后自动跳转到框架顶层页面


转载地址:http://blog.csdn.net/kintalent/article/details/12199665


思路:seesion超时后跳转到登陆页面,然后在登录页面中使用javascript控制


    if(window != top){  
        top.location.href = location.href;   
    }  

你可能感兴趣的:(session超时+页面跳转)