Manage_File.jsp
上传用户:zdly666
上传日期:2022-08-09
资源大小:6511k
文件大小:2k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

JavaScript

  1. <%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
  2. <%@ include file="conn.jsp"%>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
  7. <title>文件管理</title>
  8. <script language="javascript">
  9. function isok()
  10. {
  11. if(confirm("确认删除? 对应该专家的所有信息也将同时删除!"))
  12. {return true;}
  13. else
  14. {return false;}
  15. }
  16. </script>
  17. </head>
  18. <body background="img/beijing.gif">
  19. <jsp:include page="Menu.jsp" flush="true"/>
  20. <br>
  21. <table width="652" border="1" align="center">
  22.   <tr>
  23.     <td colspan="2"> <div align="center">标题 </div></td>
  24.     <td width="79"><div align="center">日期</div></td>
  25.     <td width="109"><div align="center">修改操作</div></td>
  26.     <td width="126"><div align="center">删除操作</div></td>
  27.   </tr>
  28. <%
  29. String FileSQL="select * from S_fileInfor order by file_id desc";
  30.  rs=stmt.executeQuery(FileSQL);
  31. rs.beforeFirst();
  32. while(rs.next())
  33. {
  34. String File_ID=rs.getString("file_id");
  35. String File_Title=rs.getString("file_title");
  36. String File_Date=rs.getString("file_date");
  37. String File_Name=rs.getString("file_name");
  38. %>  
  39.   
  40.   <tr>
  41.     <td width="24"><div align="center"><%= File_ID %></div></td>
  42.     <td width="280"><%= File_Title %></td>
  43.     <td><%= File_Date %></td>
  44.     <td><div align="center"><a href="Edit_file.jsp?id=<%= File_ID %>">修改</a></div></td>
  45.     <td><div align="center"><a href="Operate_File.jsp?EditType=fileDel&id=<%= File_ID %>&file=<%=File_Name%>">删除</a></div></td>
  46.   </tr>
  47. <% } %>
  48. </table>
  49. <p>                            <a href="picture1.jsp">返回个人相册</a>   </p>
  50. </body>
  51. <%
  52. rs.close();
  53. rs=null;
  54. stmt.close();
  55. conn.close();
  56. %>
  57. </html>