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

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. <%
  13. sql.getSQL2005conn("dbconfig.xml");
  14. String title = request.getParameter("title");
  15. String type = request.getParameter("type");
  16. String id = request.getParameter("id");
  17. String contant = request.getParameter("context");
  18. StringBuffer getselect = new StringBuffer();
  19. getselect.append("update radio set ");
  20. getselect.append("title='"+title+"',");
  21. getselect.append("context='"+contant+"',");
  22. getselect.append("type='"+type+"' where id="+id+";");
  23. String select = getselect.toString();
  24. sql.MouChoose(select);
  25. sql.closeDB();
  26. %>
  27. <div align="center">
  28. <h3>录入成功,请进行其他操作!</h3><hr><a href="changeradiolist.jsp">继续修改</a>
  29. </div>
  30. </body>
  31. </html>