deletejsp.jsp~8~
来自「北大青鸟学生作品」· JSP~8~ 代码 · 共 21 行
JSP~8~
21 行
<%@page contentType="text/html; charset=GBK"%>
<html>
<head>
<title>DeleteJsp</title>
</head>
<body bgcolor="#c0c0c0">
<%
String strid = request.getParameter("uid");
session.setAttribute("id", strid);
boolean f = telbook.SQL_jh.deletetel(new Integer(strid).intValue());
if (f) {
response.sendRedirect("jsp2_xianshi.jsp");
}
else {
System.out.println("不能删除!");
return;
}
%>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?