addFile.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. <script>
  14. function check()
  15. {
  16. /*var t=document.all.item("msgformat").value;
  17. if(t!="")
  18. {
  19. while(t.indexOf("rn")>0)t=t.replace("rn","<br>");
  20. document.all.item("content").value=t;
  21. return true;
  22. }*/
  23. if(document.all.item("title").value==""||document.all.item("filepath").value=="")
  24. {
  25. alert("下载标题和下载地址不能为空!");
  26. return false;
  27. }
  28. else return true;
  29. }
  30. function uploadfile()
  31. {
  32.   open('../compent/uploadfile/upload.jsp','上传','height=150,width=250');
  33. }
  34. </script>
  35. </head>
  36. <body>
  37. <jsp:useBean id="item" scope="page" class="beanclass.AddFileBean"/>
  38. <jsp:setProperty name="item" property="*"/>
  39. <%if(item.getTitle()!=null){java.util.Date t=new java.util.Date();String str="insert into class"+item.getBigname()+" (title,content,filepath,upfiledate,parentid) values ('"+item.getTitle()+"','"+item.getContent()+"','"+item.getFilepath()+"','"+t.toLocaleString()+"',"+item.getSmallname()+")";%><cyndi:sqlexecute sql="<%=str%>"/><script>alert("添加成功!");</script><%}%>
  40. <form METHOD=POST ACTION="addFile.jsp" onsubmit="return check();">
  41. <input type=text style="display:none" name=bigname value="<%=item.getBigname()%>"><input type=text style="display:none" name=smallname value="<%=item.getSmallname()%>">
  42. <table border="0" width="80%" align=center bgcolor="#000000" cellspacing="1" cellpadding="3">
  43. <tr bgcolor="#abb8d6">
  44. <td colspan="2" height="55">
  45. <div align="center"><b>添 加 内 容</b></div>
  46. </td>
  47. </tr>
  48. <tr bgcolor="#FFFFFF">
  49. <td align="right" bgcolor="#FFFFFF">所属栏目:</td>
  50. <td style="color:red">
  51. <%Class.forName("org.gjt.mm.mysql.Driver").newInstance();
  52.     String url ="jdbc:mysql://localhost/picring?user=nangua&password=2003herald&useUnicode=true&characterEncoding=8859_1";
  53.     Connection con= DriverManager.getConnection(url);
  54.     Statement statement=con.createStatement();
  55.     ResultSet rs=statement.executeQuery("select classname from bigclass where id="+item.getBigname());
  56.     if(rs.next()){
  57. %>
  58. <%=rs.getString("classname")%><%rs.close();rs=statement.executeQuery("select classname from smallclass where id="+item.getSmallname());if(rs.next()){%>--><%=rs.getString("classname")%><%}rs.close();}else{%>出现异常,请与管理员联系<%rs.close();}statement.close();con.close();%>
  59. <a href="fileManage.jsp?id=添加内容&num=0">重新选择栏目</a>
  60. </td>
  61. </tr>
  62. <tr bgcolor="#FFFFFF">
  63. <td align="right">下载标题:</td>
  64. <td>
  65. <input type="text" name="title" size=50>
  66. </td>
  67. </tr>
  68. <!--
  69. <tr bgcolor="#CCCCCC" align="center" valign="bottom">
  70. <td align="right" valign="top" bgcolor="#FFFFFF" >下载介绍:</td>
  71. <td bgcolor="#FFFFFF" align="left">
  72. <textarea name=msgformat style="width:450;height:350"></textarea>
  73. <textarea name="content" style="display:none"></textarea>
  74. </td>
  75. </tr>-->
  76. <tr bgcolor="#FFFFFF">
  77. <td align="right">下载地址:</td>
  78. <td>
  79. <input type="text" name="filepath" size=50>&nbsp;<a href="javascript:uploadfile();">上传图片/铃声</a>
  80. </td>
  81. </tr>
  82. <tr bgcolor="#abb8d6">
  83. <td colspan="2" align="center" height="30">
  84. <input type="submit" value=" 添 加 ">
  85. &nbsp;
  86. <input type="reset" value=" 清 空">
  87. </td>
  88. </tr>
  89. </table>
  90. </form>
  91. </body>
  92. </html>
  93.