⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 processdelete.jsp

📁 07年做得人力资源管理系统
💻 JSP
字号:
<%@ page language="java" import="com.buat.hr.institution.InstitutionDAO" pageEncoding="GB18030"%>
<%  
    int id=0;
	String idstr=null;
	idstr=request.getParameter("id");
	try{
	       id=Integer.parseInt(idstr);
	}catch(Exception e){
    }
    InstitutionDAO dao=new InstitutionDAO();
    boolean successful=dao.deleteInstitution(id);
    String message="Congratulations!删除信息成功!";
    if(successful==false)
        message="Sorry!删除信息失败!";

%>

<html>
  <head>
  </head>
 
  <body background="../bg.jpg">  
  <script type="text/javascript">
     window.alert("<%=message %>")
     <%  if(message.equals("Congratulations!删除信息成功!")){
     %>
            window.location.href="Scan.jsp";
     <%}%>
   </script>

  </body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -