其他JSP页面在同一个jsp页面中打开

时间:2011-05-03 05:29:34

标签: jsp

我正在使用JSP为不同的登录用户打开他们自己的个人内容。我使用会话并在logout.jsp中失效。因此,通过复制URL并尝试在浏览器中运行,它不会在注销后打开jsp页面。但我需要一个解决方案,当我通过登录与一种类型的用户进入(例如:http:// localhost:8080 // CEO.jsp),如果我给它(例如:http:// localhost: 8080 // Staff.jsp)它在同一个CEO.jsp页面中打开。我需要那个不开放。请帮帮我...

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"    import="Accessing.UserBean"%>
    <%@ taglib uri="/WEB-INF/tlds/birt.tld" prefix="birt" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script type="text/javascript" >
javascript:window.history.forward(1);
</script>
<style>
.title
{
width:769px;
height: 65px;
margin:15px auto;
}
.left
{float: left;
margin: 20px 50px 20px 30px;
padding: 0 0 25px 15px;
width:700px;
border: 1px solid #CCCCCC;
background-color: #CC6699;
color: #990066;
}
.right_side
{
float:right;
width:580px;
color: #000000;
background-color: #FFFFFF;
margin: 20px 0px 20px 10px;
padding:0px 0px 25px 15px;
border:1px solid #CCCCCC;   
}
</style>
</head>
<%
UserBean currentUser =(UserBean)session.getAttribute("currentSessionUser");%>
<% 
try{
    if((String)currentUser.getRoles()!=null)
 {
  %>
<body bgcolor=#CC9999>

<div class="title"> 


<div class="rightside">
<a href="signingout.jsp">Logout</a>
</div>
</div>
<div class="left">
<birt:viewer id="birtViewer" reportDesign="BankCredit.rptdesign"
pattern="frameset"
height="450"
width="700"
format="html">
</birt:viewer>
</div>
<%
    }
  else
      response.sendRedirect("signin.jsp");
    }
catch(Exception e)
    {
  out.println("<br><br><br><br><br><br>");
  out.println("<center><b><font color=red>SORRY!! ACCESS DENIED.INVALID USER.</font></b></center>");
  out.println("<br><br>");
  out.println("Please click here for <a href=signin.jsp><b>Login</b></a>");
 }
%> 
</body>
</html>

1 个答案:

答案 0 :(得分:0)

我解决这个问题的方法是削减页面,删除越来越多的碎片,直到明确哪些行有不良影响。

应该可以将它归结为一行或两行,这确实显示了问题。