deletedate.jsp

来自「07年做得人力资源管理系统」· JSP 代码 · 共 47 行

JSP
47
字号
<%@ 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 + =
减小字号Ctrl + -
显示快捷键?