action跳转页面
index.jsp页面是frameset中的上部,然后点击退出访问action里,把session销毁后跳转到登录页面login.jsp,但只是frameset的top.jsp跳到了login.jsp,怎么让整个index.jsp都跳到login.jsp
------最佳解决方案--------------------login.jsp中添加js脚本:
if(self!=top)
{
window.parent.document.location.href = document.location.href;
}
------其他解决方案--------------------
谢了