delbook.jsp

来自「基于B/S的商贸管理系统」· JSP 代码 · 共 12 行

JSP
12
字号
<%@ include file="checkfinaler.jsp"%>
<%@ page contentType="text/html;charset=gb2312" %>
<%@ include file="../conn/conn.jsp"%>
<%int id = Integer.parseInt(request.getParameter("id"));
String sql="delete from book where topicid="+id;
stmt.executeUpdate(sql);
String sql3="delete from book where id="+id;
stmt.executeUpdate(sql3);
stmt.close(); 
con.close();
%>
<script language=JavaScript>{window.location.href='glbook.jsp'}</script>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?