deltypeok.jsp
来自「JSP实现的远程教育平台」· JSP 代码 · 共 14 行
JSP
14 行
<%@ include file="conn.jsp"%>
<%@ include file="isadmin.jsp"%>
<%
request.setCharacterEncoding("GB2312");
String id=request.getParameter("id");
if(id==null){
out.print("<script>alert('请不要捣乱');top.window.location.href='adminmain.jsp';</script>");
}else{
stmt.executeUpdate("delete from scott.type where typeid='"+id+"'");
stmt.executeUpdate("delete from scott.main where idoftype='"+id+"'");
out.print("<script>alert('删除成功');window.location.href='addtype.jsp';</script>");
}
%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?