⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 examscoreanalyse.jsp

📁 培训考试系统代码
💻 JSP
字号:
<%@ page contentType="text/html;charset=gb2312"%>
<%@ include file="/agt/public/jsp/top.jsp" %>
<script src="/public/scripts/cal.js"></script>
                  <!-- title>业务代表管理系统查询考试安排录入页面</title -->
<br>
<%    Object sessionRs         =  request.getAttribute("GET-GROUP-RESULTSET");
      SysResultSet groupRs =  sessionRs == null ?null:(SysResultSet)sessionRs;
      sessionRs         =  request.getAttribute("GET-EXAM-RESULTSET");
      SysResultSet examRs =  sessionRs == null ?null:(SysResultSet)sessionRs;
%>

  <form name="examform" method="POST" action="/ExamMan.do">
  <table width="539" border="0" cellpadding="3" cellspacing="1" class="table-cs1">
    <tr>
      <td align="center" class="td-cs1">考试名称</td>
      <td colspan="3" class="td-cs2">
               
           <select  name="titleTerm" size="1" class="input2" >
           <option value="" selected >不限制</option>
          <% 

        if(examRs != null)

        {  for(int i=0;examRs.setRecord(i)&&i<examRs.getMetaData().getRecordCount();i++)

           {
      %>

       <option value="<%=examRs.getString(0)%>"><%=examRs.getString(1)%></option>

     <%     }

         }

     %>

     </select>
        
        </td>
    </tr>
     <input type="hidden" name="opeType" value="<%=OperatorFlagCode.EXAM_SCORE_ANALYSE_SEARCH%>">
         
    <tr>
      <td align="center" class="td-cs1">开始时间</td>
      <td class="td-cs2">
        <input name="startTimeTerm" type="text" class="input2" onClick="javascript:calDate(this);" onKeyPress="javascript:calDateTimeNoS(this);"></td>
     
    </tr>
    <tr> 
      <td align="center" class="td-cs1">结束时间</td>
      <td class="td-cs2">
        <input name="endTimeTerm" type="text" class="input2" onClick="javascript:calDate(this);" onKeyPress="javascript:calDateTimeNoS(this);"></td>
    </tr>
   </table>
                <table width="55%" height="35" border="0" cellpadding="0" cellspacing="0">
                      <tr>
                        <td width="27%"><input name="search" type="image" onclick="querySubmit();return false;" src="/agt/public/images/search.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 width="5%">&nbsp;</td>
                        <td width="27%"><input name="reset" type="image" onclick="examform.reset();return false;" src="/agt/public/images/reset.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 width="5%">&nbsp;</td>
                        <td width="35%">&nbsp;</td>
                      </tr>
                    </table>
                    
</form>
<%@ include file="/agt/public/jsp/bot.jsp" %>
<script src="/agt/public/js/my_functions.js" type="text/javascript"></script>

<script language="javascript">

   function querySubmit()
   {
       document.examform.submit();
   }
</script>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -