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

📄 modulelist.jsp

📁 tomcat最新安装程序
💻 JSP
字号:
<%@ page contentType="text/html;charset=GB2312" %>
<%@ page errorPage="modulelist_error.jsp" %>
<%@ page import="cn.com.aheadsoft.recordset.ModuleInfoRecordSet" %>
<%@ page import="java.util.*" %>
<%
 List userdata=(List)session.getAttribute("userdata") ;
 
 ModuleInfoRecordSet recordset=(ModuleInfoRecordSet)userdata.get(0);
 String obid =(String)userdata.get(1);
  String dpid =(String)userdata.get(2);
  
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<link rel="stylesheet" type="text/css" href="/krm/jsp/css/css.css">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" >
<table width="100%" align="center" border="0" cellpadding="0" cellspacing="0" >
    <tr >
    <td class="trA">&nbsp;系统管理 >> 数据授权 >> 角色数据授权 >> <font class="fontcolor">模块授权</font></td> 
  </tr>
  <tr height="8">
    <td></td>
  </tr>
  
  <tr>
    <td align="center" >
       <table border="0" width="98%" align="center"  bordercolor="A1B7DB" class="collapse">
          <tr > 
            <td class="tdA" colspan="7" >系统模块列表</td>
          </tr>
       <% 
	    int num=1;
		while(recordset.next()){ %>
        <tr <%
		if(num%2==0){
		%> class="bgcolor"<%}%>>
          <td width="100%" align="center"  class="common"><a href="/krm/servlet/dataauthinfoservlet?status=ul&objectid=<%=obid%>&dpid=<%=dpid%>&moduleid=<%=recordset.getMI_ModuleID()%>"><%=recordset.getMI_ModuleName()%> 
            </a></td>
        
        </tr>
      <%
	    num++;}%>
		<tr><td colspan="6" class="tdC" align="center"><INPUT name="BtnBack" type="button"   onmouseover="this.className='button2'" onmouseout="this.className='button1'"  class="button1" value="返 回" onClick="history.back(1);"></td>
		</tr>      
        </table>
		<br>
   </td>
</tr>	
</table>
 
</body>
</html>

⌨️ 快捷键说明

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