📄 deletedate.jsp
字号:
<%@ page language="java" import="com.buat.hr.stipend.StipendDAO" pageEncoding="GB18030"%>
<%
String tempId = request.getParameter("id");
int id = 0;
try{
id = Integer.parseInt(tempId);
}catch(Exception e){
}
StipendDAO dao = new StipendDAO();
String message = "failing!";
if (dao.DeletStipend(id) == false) {
%>
<Script Language="JavaScript">
<!--
function showResult(){
alert("删除薪金失败!");
location="StipendLise.jsp";
}
-->
</Script>
<%
} else {
%>
<Script Language="JavaScript">
<!--
function showResult(){
alert("删除薪金成功!");
location="StipendLise.jsp";
}
-->
</Script>
<%
}
%>
<html>
<head>
</head>
<body onLoad="showResult()" background="../bg.jpg">
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -