📄 dondelete.jsp
字号:
<%@ page language="java" import="java.util.*,com.accpedu.LHcompany.dao.*,com.accpedu.LHcompany.entity.*" pageEncoding="gbk"%>
<html>
<head>
</head>
<body><%@ include file="checkLogin.jsp" %>
<%
int id=Integer.parseInt(request.getParameter("id"));
newsDao pd=new newsDao();
int x=pd.delete(id);
if(x>0)
{
out.print("<script>alert('删除成功!');location.replace('newsGL.jsp');</script>");
}else
{
out.print("<script>alert('删除失败!');location.replace('newsGL.jsp');</script>");
}
%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -