⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.jsp

📁 JSP常用模块源代码之用户管理模块的全部源代码
💻 JSP
字号:
<%@ page contentType="text/html; charset=gb2312" pageEncoding="gb2312"%>
<%@ page import ="entity.*" %>
<%@ page import ="service.*" %>
<%@ page import ="java.util.List" %>
<%@ include file="Permission.jsp" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>主界面</title>
</head>

<body>
<table width="100%" cellspacing="0" cellpadding="0">
  <tr>
    <td width="20%" valign="top">
<table width="100%" border="1" cellpadding="0" cellspacing="0" bgcolor="#DFDFDF">
<%if (Action.hasPermission(2,Util.OP_VIEW,allPermissions)){%>
        <tr>
          <td height="25" align="center"><a href="UserList.jsp" target="sys_main">用户管理</a></td>
        </tr>
<%}
if (Action.hasPermission(3,Util.OP_VIEW,allPermissions)){%>
        <tr>
          <td height="25" align="center"><a href="RoleList.jsp" target="sys_main">角色管理</a></td>
        </tr>
<%}
if (Action.hasPermission(4,Util.OP_VIEW,allPermissions)){%>
        <tr>
          <td height="25" align="center"><a href="PermissionList.jsp" target="sys_main">权限管理</a></td>
        </tr>
<%}
if (Action.hasPermission(5,Util.OP_VIEW,allPermissions)){%>
        <tr>
          <td height="25" align="center"><a href="ResourceList.jsp" target="sys_main">资源管理</a></td>
        </tr>
<%}%>
        <tr>
          <td height="25" align="center"><a href="../logout.jsp">退出</a></td>
        </tr>
      </table></td>
    <td width="80%" height="400">
<iframe name="sys_main" width="100%" height="100%" scrolling="auto"></iframe></td>
  </tr>
</table>
</body>
</html>

⌨️ 快捷键说明

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