checkUser.jsp的内容
<style>
.warning {font-size:9pt; color:red; font-height:bold}
</style>
<%@ page import="com.hosun.depositary.security.*"%>
<%
String url = "";
Operator operator = (Operator)session.getAttribute("operator");
if(operator == null || !operator.isLogin()) {
     url = "../../login.jsp";
 %><script language="javaScript" >
<!--
setTimeout("top.location='<%=url%>'",500);
//-->
</script>
  <%
    return;
  }
else
{
    if (OperatorManager.hasRights(operator,rightId)==false) {
      url = "../../pub/accredit.jsp";
      response.sendRedirect("../../pub/accredit.jsp");
   }
}
%>