📄 studinfo.jsp
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ taglib uri="/WEB-INF/struts-template.tld" prefix="template" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<html:html>
<head>
<title>学生信息录入</title>
</head>
<body>
<h2 align="center">学生信息录入</h2>
<html:form action="/studInfo" method="post">
<table border="1" align="center" cellPadding="2" cellSpacing="0"
id="AutoNumber1" style="BORDER-COLLAPSE: collapse" width="100%">
<tr>
<td width="15%" nowrap bgcolor="#eeeeee">
<div align="right">学号</div></td>
<td width="35%"><html:text property="xh"/>
</td>
<td width="15%" nowrap bgcolor="#eeeeee">
<div align="right">姓名</div></td>
<td width="35%"><html:text property="xm"/></td>
</tr>
<tr>
<td width="15%" nowrap bgcolor="#eeeeee">
<div align="right">性别</div></td>
<td width="35%">
<html:select property="xb">
<html:option value="男">男</html:option>
<html:option value="女">女</html:option>
</html:select></td>
<td width="15%" nowrap bgcolor="#eeeeee">
<div align="right">年龄</div></td>
<td width="35%"><html:text property="nl"/></td>
</tr>
<tr>
<td width="15%" nowrap bgcolor="#eeeeee">
<div align="right">政治面貌</div></td>
<td width="35%">
<html:select property="zzmm">
<html:option value="党员">党员</html:option>
<html:option value="团员">团员</html:option>
<html:option value="群众">群众</html:option>
</html:select></td>
<td width="15%" nowrap bgcolor="#eeeeee">
<div align="right">备注</div></td>
<td width="35%"><html:textarea property="bz"/></td>
</tr>
<tr>
<td colspan="4" align="center"><html:submit property="submit" value="保存"/>
<html:reset value ="重置"/></td>
</tr>
</table>
</html:form>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -