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

📄 comefilemethod_list.jsp

📁 一个完整的办公资源管理系统
💻 JSP
字号:

<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>来文方式列表</title>
<link href="../../style/styles.css" rel="STYLESHEET" type="text/css">
<SCRIPT src="../../images/myweb.js"></SCRIPT>
</head>

<body class="body0">
<div align="center">
	<table class="table_path">
		<tr>
			
      <td >您当前的位置:<a href="#"><span class="txtpath">档案管理</span></a> &gt; <a href="#"><span class="txtpath">基础信息</span></a> 
        &gt; 来文方式</td>
		    <td align="right" >
	      <script language=JavaScript>
										 today=new Date();
										 function initArray(){
										 this.length=initArray.arguments.length
										 for(var i=0;i<this.length;i++)
										 this[i+1]=initArray.arguments[i]  }
										 var d=new initArray(
											 " 星期日",
											 " 星期一",
											 " 星期二",
											 " 星期三",
											 " 星期四",
											 " 星期五",
											 " 星期六");
												document.write(
											 "",
											 today.getYear(),"年",
											 today.getMonth()+1,"月",
											 today.getDate(),"日 ",
											d[today.getDay()+1],
											 "" ); 
									</script></td>
		</tr>
	</table>
	<%
	List fileList=(List)session.getAttribute("fileList");
	%>
		
  <table cellSpacing=1 cellPadding=2 class="table1" id="table4">
    <tr> 
      <th scope="col">名称</th>
      <th scope="col">操作</th>
    </tr>
    <c:forEach var="file" items="${fileList}">
    <tr class="tr_s" onmouseover="this.className='tr_o'" onmouseout="this.className='tr_s'"> 
      <td><c:out value="${file.cfilename}"></c:out></td>
      <td width="80"><div align="center"><img src="../../images/btn_edit.gif" style="cursor: hand;" alt='编辑' onclick="javascript:location='comefilemethod_modify.htm'"> <img src="../../images/btn_del.gif" style="cursor: hand;" alt='删除' onclick='javascript:if(confirm("是否确定删除?")) {return true;}'></div></td>
    </tr>
   </c:forEach>
  </table>
    
		<table width="100%" border="0" cellpadding="0" cellspacing="0" class="table0">
          <tr>
            <td width="35%">
              <input name="button" type="button" class=btn_mouseout onmousedown="this.className='btn_mousedown'" onmouseup="this.className='btn_mouseup'" onmouseover="this.className='btn_mouseover'" onmouseout="this.className='btn_mouseout'" value="新增"  onclick="javascript:location='comefilemethod_add.htm'"></td>
            <td width="62%">
              <p align="right"><font color="#008080">共</font><font color="#800000"> 1</font><font color="#008080"> 页  首页 上一页 下一页 尾页&nbsp; 跳转
                    <input name="text" type="text" size="4">
        页</font></td>
            <td width="3%">&nbsp; </td>
          </tr>
          <tr>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
          </tr>
        </table>
</div>
</body>
</html>

⌨️ 快捷键说明

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