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

📄 functions.jsp

📁 本程序实现了一个访问控制系统
💻 JSP
字号:
<%@ page contentType="text/html; charset=GBK"%>
<%@ page import="java.util.*"%>
<%@ page import="org.appfuse.model.*"%>
<%@ page import="org.appfuse.webapp.form.*"%>
<%@ page import="org.appfuse.util.*"%>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%>
<SCRIPT language=JavaScript src="<%=request.getContextPath()%>/include/check.js" type="text/javascript"></SCRIPT>
<html>
  <head>
  <link rel=stylesheet href="<%=request.getContextPath()%>/include/style.css">
  <title>功能管理</title>
  <SCRIPT language="javascript">
     function searchFunction()
     {
	document.functionForm.action="<%=request.getContextPath()%>/functionAction.do?method=search";
        document.functionForm.submit();
     }
     function createFunction()
     {
	document.functionForm.action="<%=request.getContextPath()%>/sysmanage/functionmanage/function_create.jsp";
        document.functionForm.submit();
     }
  </SCRIPT>
  </head>
<%
   List functions = (List)request.getAttribute("functions");
%>

<body>
<form name="functionForm" method="POST" >
<table border="1px" cellspacing="0" cellpadding="10" align=center width="80%" bgColor=#E4E8EF>
  <tr>
    <td width="70%">功能编号
        <input name="functionid" type="text" size="15">
 	  <a href="#"  onClick="searchFunction();">查询</a>
    </td>
    <td width="30%">
        <div align="center">
 	  <a href="#"  onClick="createFunction();">创建新功能</a>
        </div>
    </td>
  </tr>
</table>
<!--
<table border="1px" cellspacing="0" cellpadding="10" align=center width="80%" bgColor=#E4E8EF>
  <tr>
    <td align="left" width="70%">功能列表</td>
    <td align="right" width="30%">
 	  <input type="button" name="create" value="创建新功能" onClick="createStaff();">
    </td>
  </tr>
</table>
-->
<table border="1px" cellspacing="0" cellpadding="10" align=center width="80%" bgColor=#E4E8EF>
  <tr bgcolor="#76aef0">
    <th width="10%"><div align="center">功能编号</div></th>
    <th width="30%"><div align="center">功能名称</div></th>
    <th width="30%"><div align="center">功能描述</div></th>
    <th width="30%"><div align="center">操作</div></th>
  </tr>
  <%
  if(functions != null)
  {
     for(int i = 0; i< functions.size(); i++)
     {
        Function function = (Function)functions.get(i);
  %>
  <tr>
    <td><%=StringUtil.getString(function.getFunctionid())%></td>
    <td><%=function.getFunctionname()%></td>
    <td><%=function.getDescription()%></td>
    <td align="center">
<a href="<%=request.getContextPath()%>/functionAction.do?method=update&functionid=<%=function.getFunctionid()%>">编辑</a>
<a href="<%=request.getContextPath()%>/functionAction.do?method=delete&functionid=<%=function.getFunctionid()%>">删除</a>
<!--
<a href="<%=request.getContextPath()%>/functionFunction.do?method=functionauth&functionid=<%=function.getFunctionid()%>">分配权限</a>
-->
    </td>
  </tr>
  <%
      }
   }
  %>
</table>
</form>
</body>
</html>

⌨️ 快捷键说明

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