system.jsp

来自「这是一个法律事务所系统源码」· JSP 代码 · 共 39 行

JSP
39
字号
<%@ page contentType= "text/html; charset=gb2312" %>
<%@ page language="java" import="system.Security" %>
<%
  Security auth = new Security();
  String employee_id = (String)session.getAttribute("employee_id");
  if(employee_id == null || employee_id.equals(""))
  {
    response.sendRedirect(response.encodeRedirectURL("../index.htm"));
  }
  String modelid = "Adm010";
  int authflag = auth.popedom(employee_id, modelid);
  if(authflag == 0 || authflag == 2 || authflag == -1)
  {
%>
  <jsp:forward page="../inc/noauth.jsp" >
  </jsp:forward>
<%
  }
%>
<html>
<head>
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>group</title>
</head>

  <frameset cols="*,0" frameBorder=1 >
    <frame name="system_main" src="system_main.jsp" target="_blank" scrolling="auto">
    <frame name="system_hide" src="system_hide.jsp" target="_blank" scrolling="auto">
  </frameset>
  <noframes>
  <body>

  <p>此网页使用了框架,但您的浏览器不支持框架。</p>

  </body>
  </noframes>

</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?