del.jsp
来自「该程序已经集成了两个数据库」· JSP 代码 · 共 31 行
JSP
31 行
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<%@ include file="../conn.jsp"%>
<script language="javascript">
window.confirm("你确定要删除吗?");
</script>
<%request.setCharacterEncoding("gb2312");
String actions="post";
if (actions.equals(request.getParameter("action"))){
int i;
//for (i=1;i<(int)request.getParameterValues("sel");i++)
//String[] data=request.getAttributeNames("sel");
out.print("该功能正在开发中……");
}else{
String sql="delete from download where id='"+request.getParameter("softid")+"'";
stmt.executeUpdate(sql);
//out.print("<script >window.history.go(-1);</script>");
response.sendRedirect("edit.jsp");
}
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head>
<body>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?