del.jsp
来自「就是moc风格的一个 小软件的程序员马」· JSP 代码 · 共 49 行
JSP
49 行
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<%@ include file="conn.jsp"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="css.css" type="text/css">
<title>删除</title>
</head>
<%
/*
巧悟留言板1.0版(JSP)
程序设计:Jorwoo
QQ:513768
E-Mail:jorwoo@eyou.com
网站:http://jorwoo.yeah.net
*/
if(session.getAttribute("adminname")==null)
{response.sendRedirect("sorry.jsp");}
%>
<%
String idz = new String(request.getParameter("id").getBytes("iso-8859-1"));
int id = Integer.parseInt(idz);
%>
<body background="img/beijing.gif">
<table width="600" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td>
<form name="form1" method="POST" action="operate_d.jsp?id=<%=id%>">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center">
<input type="submit" name="Submit" value="确定删除" style="border:1 solid #BBB9B9;background:#ffffff" class="button"></td>
</tr>
</table>
</form></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?