frameset框架中session失灵后怎样回到登录页面

frameset框架中session失效后怎样回到登录页面在页面使用了frameset。在session失效后需望转到登录页面,此

frameset框架中session失效后怎样回到登录页面

在页面使用了frameset。在session失效后需望转到登录页面,此时会在管理台页面的一个子页面中显示登录界面
解决方法是:可以在登录页面中加入以下js代码。

Java代码

if (top.location != self.location){?? ??

top.location=self.location;?? ??

}???

?