delok.jsp

来自「用jsp和Oracle数据库写的一个论坛系统」· JSP 代码 · 共 15 行

JSP
15
字号
<%@ page contentType="text/html;charset=gb2312" %>
<%@ include file="conn.jsp"%>


<%
String id=request.getParameter("id");
if(id==null){

out.print("<script>alert('请不要捣乱');top.window.location.href='adminlist.jsp';</script>");
}else{

stmt.executeUpdate("delete from scott.sport where sportid='"+id+"'");
out.print("<script>alert('删除成功');window.location.href='adminsport.jsp?';</script>");
}
%>

⌨️ 快捷键说明

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