news_del_operate.jsp
上传用户:zdly666
上传日期:2022-08-09
资源大小:6511k
文件大小:0k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

JavaScript

  1. <%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
  2. <%@page import="java.util.Date"%>
  3. <%@page import="java.util.*"%>
  4. <%@page import="java.text.*"%>
  5. <%@ include file="conn.jsp" %>
  6. <%
  7. String art_id=new String(request.getParameter("id").getBytes("ISO-8859-1"));
  8. String condition="delete from art where art_id='"+art_id+"'";
  9. stmt.executeUpdate(condition);
  10. stmt.close();
  11. conn.close();
  12. response.sendRedirect("news_all.jsp");
  13.            
  14. %>