deletejsp.jsp~7~

来自「北大青鸟学生作品」· JSP~7~ 代码 · 共 17 行

JSP~7~
17
字号
<%@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");
  }
%>
</body>
</html>

⌨️ 快捷键说明

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