listFile.jsp
上传用户:xiao85513
上传日期:2010-01-11
资源大小:2160k
文件大小:3k
源码类别:

手机WAP编程

开发平台:

Java

  1. <%@ page import="java.sql.*"%>
  2. <%@ taglib uri="http://herald.seu.edu.cn/yiwen" prefix="cyndi"%>
  3. <html>
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  6. <title>艺文频道管理系统</title>
  7. <style type="text/css">
  8. a:{text-decoration:none;color:gray}
  9. a:link{text-decoration:none;color:gray}
  10. a:visited{text-decoration:none;color:gray}
  11. A:hover {text-decoration:none;color:red}
  12. </style>
  13. </head>
  14. <body>
  15. <jsp:useBean id="item" scope="page" class="beanclass.ListFileBean"/>
  16. <jsp:setProperty name="item" property="*"/>
  17. <%if(item.getDeleteid()!=null){String s="delete from class"+item.getBigname()+" where id="+item.getDeleteid();%>
  18. <cyndi:sqlexecute sql="<%=s%>"/>
  19. <%}%>
  20. <cyndi:topandbottom title="文章列表">
  21. <table  border="0" cellpadding="0" cellspacing="0" width=80%>
  22. <Tr><td>
  23. <table width="98%" border="0" cellpadding="0" cellspacing="1" bgcolor="#000000">
  24. <tr>
  25. <td width="70%" bgcolor="#304D7C">
  26. <div align="center"><font color="#FFFFFF">文章标题</font></div>
  27. </td>
  28. <td width="10%" bgcolor="#304D7C">
  29. <div align="center"><font color="#FFFFFF">修改</font></div>
  30. </td>
  31. <td width="10%" bgcolor="#304D7C">
  32. <div align="center"><font color="#FFFFFF">删除</font></div>
  33. </td>
  34. <td width="10%" bgcolor="#304D7C">
  35. <div align="center"><font color="#FFFFFF">移动</font></div>
  36. </td>
  37. </tr>
  38. <%
  39.     Class.forName("org.gjt.mm.mysql.Driver").newInstance();
  40.     String url ="jdbc:mysql://localhost/javagame?user=nangua&password=2003herald&useUnicode=true&characterEncoding=8859_1";
  41.     Connection con= DriverManager.getConnection(url);
  42.     Statement statement=con.createStatement();
  43.     String str="";
  44.     if(item.getSmallname()!=null)str="select id,title from class"+item.getBigname()+" where parentid="+item.getSmallname();
  45.     else str="select id,title from class"+item.getBigname();
  46.     ResultSet rs=statement.executeQuery(str);
  47.     while(rs.next()){
  48. %>
  49. <tr bgcolor="#FFFFFF">
  50. <%String id=rs.getString("id");%>
  51. <td width="70%" align="left">&nbsp;<a href=../view.jsp?id=<%=rs.getString("id")%>&big=<%=item.getBigname()%> target="_blank"><font color=black><%=rs.getString("title")%></font></a></td>
  52. <td width="10%" align="center"><a href="editFile.jsp?id=<%=id%>&bigname=<%=item.getBigname()%>&smallname=<%=item.getSmallname()%>" target="_blank">修改</a></td>
  53. <td width="10%" align="center"><a href="listFile.jsp?deleteid=<%=id%>&bigname=<%=item.getBigname()%>&smallname=<%=item.getSmallname()%>">删除</a></td>
  54. <td width="10%" align=center>移动</td>
  55. </tr>
  56. <%}
  57. rs.close();
  58. statement.close();
  59. con.close();%>
  60. </table>
  61. </td></tr></table>
  62. </cyndi:topandbottom>
  63. </body>
  64. </html>
  65.