📄 del.jsp
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ page import="com.hanb.log.bean.Stu" %>
<html>
<head>
<title>
del
</title>
</head>
<body bgcolor="#ffffff">
<%
Stu stu=new Stu();
stu=(Stu)request.getAttribute("stu");
%>
<form method="post" action="logAction.do">
<input type="hidden" name="action" value="del" />
<input type="hidden" name="id" value="<%=stu.getId()%>" />
<br><br>
<center><h2><font color="blue">删除单个学生信息</font></h2></center>
<br><br>
<table width="300" align="center">
<tr>
<td>姓名</td>
<td><%=stu.getStuName() %></td>
</tr>
<tr>
<td>年龄</td>
<td>
<%=stu.getStuAge() %>
</td>
</tr>
<tr>
<td>性别</td>
<td>
<%=stu.getStuSex()%>
</td>
</tr>
<tr>
<td>城市</td>
<td><%=stu.getStuCity()%></td>
</tr>
<tr>
<td><input type="submit" value="确定"/></td>
<td><input type="button" value="返回" onclick="submit();" /></td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -