📄 classdetail.jsp
字号:
<%@ page contentType="text/html;charset=gb2312"%>
<%@ include file="/agt/public/jsp/top.jsp" %>
<form name="addclassform" method="POST" action="/ExamClassMan.do">
<input type="hidden" name="opeType" value="<%=OperatorFlagCode.EXAMCLASS_ADD%>">
<table width="539" border="0" cellpadding="3" cellspacing="1" class="table-cs1">
<tr>
<td width="25%" align="center" class="td-cs1">班级名称</td>
<td width="75%" class="td-cs2">
<%=request.getParameter("title")%>
</td>
</tr>
</table>
<br>
<table width="539" border="0" cellpadding="3" cellspacing="1" class="table-cs1">
<tr class="td-cs1" align="center">
<td width="25%" align="center"> 第一组IP列表</td>
<td width="25%" height="25" align="center">第二组IP列表 </td>
<td width="25%" height="25" align="center"> 第三组IP列表</td>
<td width="25%" height="25" align="center">第四组IP列表 </td>
</tr>
<tr>
<td valign="top"><table name="iptab1" id="iptab1">
<%
SysResultSet ipaddrRs = (SysResultSet)request.getAttribute("EXAMCLASS-QUERY-IPSET1");
ipaddrRs.sort(1,true);
if( ipaddrRs != null && ipaddrRs.getMetaData().getRecordCount() != 0 )
{
//此处是用来显示结果
for(int i=0; ipaddrRs.setRecord(i)&&(i<ipaddrRs.getMetaData().getRecordCount()); i++)
{
%>
<tr>
<td align="center">
<%=ipaddrRs.getString(1)%>
</td>
</tr>
<%
}
} %>
</table> </td>
<td valign="top"> <table name="iptab2" id="iptab2">
<%
ipaddrRs = (SysResultSet)request.getAttribute("EXAMCLASS-QUERY-IPSET2");
ipaddrRs.sort(1,true);
if( ipaddrRs != null && ipaddrRs.getMetaData().getRecordCount() != 0 )
{
//此处是用来显示结果
for(int i=0; ipaddrRs.setRecord(i)&&(i<ipaddrRs.getMetaData().getRecordCount()); i++)
{
%>
<tr>
<td align="center">
<%=ipaddrRs.getString(1)%>
</td>
</tr>
<%
}
} %>
</table> </td>
<td valign="top"><table name="iptab3" id="iptab3">
<%
ipaddrRs = (SysResultSet)request.getAttribute("EXAMCLASS-QUERY-IPSET3");
ipaddrRs.sort(1,true);
if( ipaddrRs != null && ipaddrRs.getMetaData().getRecordCount() != 0 )
{
//此处是用来显示结果
for(int i=0; ipaddrRs.setRecord(i)&&(i<ipaddrRs.getMetaData().getRecordCount()); i++)
{
%>
<tr>
<td align="center">
<%=ipaddrRs.getString(1)%>
</td>
</tr>
<%
}
} %>
</table> </td>
<td valign="top"><table name="iptab4" id="iptab4">
<%
ipaddrRs = (SysResultSet)request.getAttribute("EXAMCLASS-QUERY-IPSET4");
ipaddrRs.sort(1,true);
if( ipaddrRs != null && ipaddrRs.getMetaData().getRecordCount() != 0 )
{
//此处是用来显示结果
for(int i=0; ipaddrRs.setRecord(i)&&(i<ipaddrRs.getMetaData().getRecordCount()); i++)
{
%>
<tr align="center">
<td >
<%=ipaddrRs.getString(1)%>
</td>
</tr>
<%
}
} %>
</table> </td>
</tr>
</table>
<table width="539" height="35" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="center"> <table width="424" height="35" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="25%"> </td>
<td width="25%"> <input name="back" type="image" onclick="history.back();return false;" src="/agt/public/images/back.gif" width="82" height="22" border="0" onmouseover="this.src='/agt/public/images/'+ this.name + '_2.gif';" onmouseout="this.src='/agt/public/images/'+ this.name + '.gif'">
</td>
<td> </td>
</tr>
</table></td>
</tr>
</table>
</form>
<%@ include file="/agt/public/jsp/bot.jsp" %>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -