?? del.jsp
字號:
<%@ page contentType="text/html; charset=GBK" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title>
del
</title>
</head>
<body bgcolor="#ffffff">
<c:if test="${empty requestScope.delresult}">
<center>
<table>
<tr>
<td>
<font color="red">是否執行刪除操作</font>
</td>
</tr>
<tr>
<td>
<a href="delservlet?id=${param.id}">確認</a>
</td>
<td>
<a onclick="javascript:window.close(this);">取消</a>
</td>
</tr>
</table>
</center>
</c:if>
<c:if test="${requestScope.delresult==false}">
<center>
<table>
<tr>
<td>
<font color="red">抱歉刪除失敗</font>
</td>
</tr>
<tr>
<td>
<a onclick="javascript:window.close(this);">離開</a>
</td>
</tr>
</table>
</center>
</c:if>
<c:if test="${requestScope.delresult==true}">
<center>
<table>
<tr>
<td>
<font color="red">恭喜!刪除成功</font>
</td>
</tr>
<tr>
<td>
<a onclick="javascript:opener.location.href='oprater?action=select';javascript:window.close(this);"">確認</a>
</td>
</tr>
</table>
</center>
</c:if>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -