newarticle_do.jsp~31~
上传用户:dlqqsh
上传日期:2021-11-13
资源大小:7840k
文件大小:2k
源码类别:

OA系统

开发平台:

Java

  1. <%@ page contentType="text/html; charset=GBK" import="java.sql.*,java.lang.*" buffer="64kb" %>
  2. <%request.setCharacterEncoding("gbk"); %>
  3. <html>
  4. <head>
  5. <title>
  6. newarticle_do
  7. </title>
  8. </head>
  9. <jsp:useBean id="sql" scope="page" class="control.sqlcontrol" />
  10. <jsp:useBean id="file" scope="page" class="control.Filecontrol.Reader_Writer" />
  11. <body bgcolor="#ffffff">
  12. <%try{
  13.   sql.getSQL2005conn("dbconfig.xml");
  14.   String title = request.getParameter("title");
  15.   String users = request.getParameter("users");
  16.   String url = request.getParameter("article_contexturl");
  17.   String type = request.getParameter("type");
  18.   String depar = request.getParameter("depar");
  19.   String time = request.getParameter("time1");
  20. if(title==null||title.equals("")||title.equals(null)||title.trim().equals("")){
  21.   out.print("<h3  align="center">标题不能为空!请返回重填!</h3>");
  22.   out.print("还要一个返回链接!");
  23. }else{
  24.   String path =application.getRealPath("article")+"\"+url;
  25.   String contant = request.getParameter("context");
  26.   file.WriteFile(path,contant);
  27.   StringBuffer getselect = new StringBuffer();
  28.   getselect.append("insert into article(");
  29.   getselect.append("users,");
  30.   getselect.append("depar,");
  31.   getselect.append("title,");
  32.   getselect.append("date,");
  33.   getselect.append("context,");
  34.   getselect.append("type) values (");
  35.   getselect.append("'"+users+"','"+depar+"','"+title+"','"+time+"','"+url+"','"+type+"');");
  36.   String select = getselect.toString();
  37.   sql.MouChoose(select);
  38.   sql.closeDB();%>
  39.   <a onclick="">点击返回!</a>
  40.   <div align="center">
  41.     <h3>录入成功,请进行其他操作!</h3><hr><a href="newArticle.jsp">继续录入</a>
  42.   </div>
  43.   <%
  44. }
  45. }catch(Exception ex){
  46.   ex.printStackTrace();
  47. }
  48. %>
  49. <script type="">
  50. </script>
  51. </body>
  52. </html>