📄 findinsteadman.jsp
字号:
<%@ page language="java" pageEncoding="UTF-8"%>
<jsp:directive.page import="edu.yinhe.mis.vo.TeacherVO"/>
<jsp:directive.page import="edu.yinhe.mis.vo.ApplyVO"/>
<jsp:directive.page import="java.util.ArrayList"/>
<jsp:directive.page import="java.util.Iterator"/>
<%@ 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();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
<head>
<html:base />
<title>查找替代人</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<LINK href="../css/CSS.css" type=text/css rel=stylesheet>
<LINK href="<%=path%>/admins/css/general.css" type=text/css
rel=stylesheet>
<LINK href="<%=path%>/admins/css/main.css" type=text/css
rel=stylesheet>
</head>
<style>
td,th {height:25px;}
</style>
<body style="background-color:#DDEEF2">
<H1>
<SPAN>银河综合系统管理中心--查找替代人
</SPAN>
</H1>
<form action="">
<table border="1" align="center" width="600"
style="border-collapse: collapse; font-size: 10pt">
<%
ApplyVO vo = (ApplyVO)request.getAttribute("vo");
TeacherVO tvo = null;
ArrayList list = (ArrayList)session.getAttribute("list");
%>
<tr>
<td colspan="3">课程名:<%=vo.getTeachCourse() %></td>
</tr>
<tr>
<td width="40%" align="center"> 开始日期:<input type="text" name="startDate" value="<%=vo.getStartDate() %>" disabled="false" ></td>
<td width="40%" align="center"> 结束日期:<input type="text" name="endDate" value="<%=vo.getEndDate() %>" disabled="false" ></td>
</tr>
</table>
</form>
<br/>
<table border="1" align="center" width="600"
style="border-collapse: collapse; font-size: 10pt">
<tr style="background-color:#80BDCB">
<th>教师名称:</th>
<th>教师工号:</th>
<th>指定替代人</th>
</tr>
<%
for(Iterator it = list.iterator();it.hasNext();){
tvo = (TeacherVO)it.next();
%>
<tr>
<td align="center">
<%=tvo.getTeacher_name() %>
</td>
<td align="center">
<%=tvo.getTeacher_no() %>
</td>
<td align="center">
<a href="<%=basePath %>admins/paike/tiaoke/apply.html?method=viewInstead&id=<%=vo.getId() %>&teacher_name=<%=tvo.getTeacher_name() %>">指定</a>
</td>
</tr>
<%}%>
</table>
<DIV id=footer >版权所有 @2005-2007 湖北银河软件开发有限公司,并保留所有权利。 </DIV>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -