📄 studentquerylist.jsp
字号:
<%@ page language="java" pageEncoding="GBK"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>
<% String path = request.getContextPath();
%>
<link rel="stylesheet" href="<%=path%>/css/styles.css" type="text/css" />
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
<link rel="stylesheet" href="<%=path%>/css/styles.css" type="text/css" />
<head>
<html:base />
<title>userlist.jsp</title>
</head>
<body>
<html:form action="/manage/student" >
<html:hidden property="task" value="query"/>
<table width="90%" cellspacing="1" cellpadding="1" class="tableContent">
<tbody>
<TR >
<TD colspan="4">
<html:img page="/images/title.gif"/>
<b>学生档案查询</b>
</TD>
</TR>
<tr class="trContent">
<td >
班级号码 :
</td>
<td>
<html:text property="classno"/>
</td>
<td>
在学状态 :
</td>
<td>
<html:select property="state" styleClass="selectContent">
<html:option value=""></html:option>
<html:options collection="studystatelist" property="fieldcode" labelProperty="fieldname"/>
</html:select>
</td>
</tr>
<tr class="trContent">
<td >
休学/退学时所学阶段 :
</td>
<td>
<html:text property="endphase"/>
</td>
<td>
缴费状态 :
</td>
<td>
<html:select property="paystate" styleClass="selectContent">
<html:option value=""></html:option>
<html:options collection="paystatelist" property="fieldcode" labelProperty="fieldname"/>
</html:select>
</td>
</tr>
<tr class="trContent">
<td >
学生编号 :
</td>
<td>
<html:text property="studentno"/>
</td>
<td>
学员姓名 :
</td>
<td>
<html:text property="name"/>
</td>
</tr>
<tr class="trContent">
<td >
性别 :
</td>
<td>
<html:select property="sex">
<html:option value=""></html:option>
<html:options collection="sexlist" property="fieldcode" labelProperty="fieldname"/>
</html:select>
</td>
<td>
学历 :
</td>
<td>
<html:select property="scholar">
<html:option value=""></html:option>
<html:options collection="scholarlist" property="fieldcode" labelProperty="fieldname"/>
</html:select>
</td>
</tr>
<tr class="trContent">
<td >
毕业院校 :
</td>
<td>
<html:select property="school">
<html:option value=""></html:option>
<html:options collection="schoollist" property="fieldcode" labelProperty="fieldname"/>
</html:select>
</td>
<td>
专业 :
</td>
<td>
<html:select property="speciality">
<html:option value=""></html:option>
<html:options collection="specialitylist" property="fieldcode" labelProperty="fieldname"/>
</html:select>
</td>
</tr>
<tr class="trContent">
<td >
是否在校生 :
</td>
<td>
<html:select property="oncampus" styleClass="selectContent">
<html:option value=""></html:option>
<html:options collection="oncampuslist" property="fieldcode" labelProperty="fieldname"/>
</html:select>
</td>
<td>
 
</td>
<td>
 
</td>
</tr>
<tr>
<td colspan="4" align="center">
<input type="submit" value="查询"/>
</td>
</tr>
</tbody>
</table>
</html:form>
<table width="90%" cellspacing="1" cellpadding="1" class="tableContent">
<tr class="trContent">
<td><b>编号</b></td>
<td><b>班级</b></td>
<td><b>姓名</b></td>
<td><b>性别</b></td>
<td><b>开学日期</b></td>
<td><b>毕业/休学/退学日期</b></td>
<td><b>缴费状况</b></td>
<td><b>学历</b></td>
<td><b>专业</b></td>
<td><b>毕业院校</b></td>
<td><b>操作</b></td>
</tr>
<logic:notEmpty name="studentlist">
<logic:iterate id="studentinfo" name="studentlist">
<tr class="trContent">
<td class="bodyText"><bean:write name="studentinfo" property="studentno" /></td>
<td class="bodyText"><bean:write name="studentinfo" property="classno" /></td>
<td class="bodyText"><bean:write name="studentinfo" property="name" /></td>
<td class="bodyText"><bean:write name="studentinfo" property="sexname" /></td>
<td class="bodyText"><bean:write name="studentinfo" property="termbegindate" /></td>
<td class="bodyText"><bean:write name="studentinfo" property="termenddate" /></td>
<td class="bodyText"><bean:write name="studentinfo" property="paystatename" /></td>
<td class="bodyText"><bean:write name="studentinfo" property="scholar" /></td>
<td class="bodyText"><bean:write name="studentinfo" property="speciality" /></td>
<td class="bodyText"><bean:write name="studentinfo" property="school" /></td>
<td class="bodyText">
<html:link action="/manage/student.do?task=querydetail" paramId="studentid" paramName="studentinfo" paramProperty="studentid">详细</html:link>
</td>
</tr>
</logic:iterate>
</logic:notEmpty>
</table>
<logic:present name="pagetool">
<bean:write name="pagetool" filter="false"/>
</logic:present>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -