后台跳转都是同一个网页链接localhost:8080/admin/login,所以最后登录进去后退出也退出不了回不到最开始login界面
login界面:
登录后界面:
整个流程是首先login登录进去后是下面这个代码来显示头部,左侧及内容。(开始试过头部和左侧写一个jsp但最后效果不好)而且登录进去后应该是下面这个jsp 但是网页链接还是admin/login,该怎么改能退出到登录界面呢?
<html>
<head>
<title>后台管理页面</title>
<meta http-equiv=Content-Type content=text/html;charset=utf-8>
</head>
<frameset rows="64,*" frameborder="0" border="0" framespacing="0">
<frame src="${pageContext.request.contextPath}/public/admin/admin_top.jsp" noresize="noresize" frameborder="0" name="topFrame" scrolling="no" marginwidth="0" marginheight="0" target="main" />
<frameset cols="200,*" id="frame">
<frame src="${pageContext.request.contextPath}/public/admin/admin_left.jsp" noresize="noresize" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" target="main" />
<frame src="/menus/allMenus " name="main" marginwidth="0" marginheight="0" frameborder="0" scrolling="auto" target="_self" />
</frameset>
</frameset>
<noframes>
<body></body>
</noframes>
</html>