📄 processdelete.jsp
字号:
<%@ page language="java" import="com.buat.hr.users.User,com.buat.hr.users.UserDao,javax.swing.*" pageEncoding="GB18030"%>
<%
String strId=null;
int id=0;
String massage=null;
strId=request.getParameter("id");
try{
if(!strId.equals(null)){
id=Integer.parseInt(strId);
}
}catch(Exception e){}
UserDao udao=new UserDao();
User user=null;
boolean flags=udao.deleteUserByid(id);
%>
<html>
<head>
<title></title>
</head>
<body background="../bg.jpg">
<center>
<%
if(flags==true){
%>
<script type="text/javascript">
window.alert("删除成功!!!");
window.location.href("Scan.jsp");
</script>
<%
}
else{
%>
<script type="text/javascript">
window.alert("删除失败!!!");
window.location.href("Scan.jsp");
</script>
<%
}
%>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -