changeradio_do.jsp
资源名称:bangong.rar [点击查看]
上传用户:dlqqsh
上传日期:2021-11-13
资源大小:7840k
文件大小:1k
源码类别:
OA系统
开发平台:
Java
- <%@ page contentType="text/html; charset=GBK" import="java.sql.*,java.lang.*" buffer="64kb" %>
- <%request.setCharacterEncoding("gbk"); %>
- <html>
- <head>
- <title>
- newarticle_do
- </title>
- </head>
- <jsp:useBean id="sql" scope="page" class="control.sqlcontrol" />
- <jsp:useBean id="file" scope="page" class="control.Filecontrol.Reader_Writer" />
- <body bgcolor="#ffffff">
- <%
- sql.getSQL2005conn("dbconfig.xml");
- String title = request.getParameter("title");
- String type = request.getParameter("type");
- String id = request.getParameter("id");
- String contant = request.getParameter("context");
- StringBuffer getselect = new StringBuffer();
- getselect.append("update radio set ");
- getselect.append("title='"+title+"',");
- getselect.append("context='"+contant+"',");
- getselect.append("type='"+type+"' where id="+id+";");
- String select = getselect.toString();
- sql.MouChoose(select);
- sql.closeDB();
- %>
- <div align="center">
- <h3>录入成功,请进行其他操作!</h3><hr><a href="changeradiolist.jsp">继续修改</a>
- </div>
- </body>
- </html>