📄 delete_succeed.jsp
字号:
<%@ page import="java.lang.Float" %>
<%@ page contentType="text/html; charset=GBK" %>
<%@ page import="java.sql.*,java.text.*"%>
<%@ include file = "../conn.jsp" %>
<jsp:include page="../islogin.jsp"/>
<html>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<style type="text/css">
<!--
.style1 {color: #0000FF}
.style2 {
color: #FF0000;
font-style: italic;
}
.style3 {color: #FF0000}
-->
</style>
<body>
<%!String Id,sql;%>
<%
Id=request.getParameter("Id");
sql="DELETE FROM app_kefu_tuifeixitong WHERE Id='"+Id+"'";
Statement sqlbean = null ;
sqlbean = conn.createStatement();
try{
sqlbean.executeUpdate(sql);
}
catch (SQLException e) {}
finally {
try {
if (sqlbean!=null) {
sqlbean.close();
}
}
catch (SQLException e) {}
}
%>
<center>
删除成功!
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -