SearchInfo.jsp~22~
上传用户:zghglow
上传日期:2022-08-09
资源大小:27227k
文件大小:7k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

JavaScript

  1. <%@ page contentType="text/html; charset=GBK" %>
  2. <html>
  3. <head>
  4. <%@ include file="WebInfo.jsp" %>
  5. <script type="text/javascript">
  6. function doPost(params){
  7.   var action="<%=request.getContextPath()%>/Index.do?todo=OpenIndexMenu&fMenuID=<c:out value="${param.fMenuID}" />&"+params;
  8.   <c:if test="${param.cMenuID != null}">
  9.   action += "&cMenuID=<c:out value="${param.cMenuID}" />"
  10.   </c:if>
  11.   var form=document.getElementById("form1");
  12.   form.action=action;
  13.   form.submit();
  14. }
  15. </script>
  16. </head>
  17. <body bgcolor="#ffffff">
  18. <%@ include file="Top/Top.jsp" %>
  19. <form action="" id="form1" method="POST">
  20. <table width="100" border="0" align="center" cellpadding="0" cellspacing="0">
  21.   <tr>
  22.     <td><img src="<%=request.getContextPath()%>/<c:out value="${menu.image.path}" />/<c:out value="${menu.image.reallyname}" />" width="840" height="170" alt=""></td>
  23.   </tr>
  24. </table>
  25. <table width="840" border="0" align="center" cellpadding="0" cellspacing="0" style="margin-top:6px;">
  26.   <tr>
  27.     <td width="166" height="488" valign="top" bgcolor="#F6F6F6"><%@ include file="Left/LeftMenu.jsp" %></td>
  28.     <td width="674" valign="top" style="padding:5px">
  29.       <table width="100%" border="0" cellspacing="0" cellpadding="0">
  30.         <tr>
  31.           <td>
  32.             <table width="100%" border="0" cellspacing="0" cellpadding="0">
  33.               <tr>
  34.                 <td width="30%">&nbsp;<strong><font color="#C80000" ><l:out CNLetter="全文查询" ENLetter=""/></font></strong></td>
  35.                 <td width="70%" valign="bottom"><div align="right" class="LoginTitle"><l:out CNLetter="当前位置:首页" ENLetter="Position:Home"/> &gt; <l:out CNLetter="查询结果" ENLetter=""/></div></td>
  36.               </tr>
  37.             </table>
  38.             <table width="100%" border="0" cellspacing="0" cellpadding="0">
  39.               <tr>
  40.                 <td height="2"></td>
  41.               </tr>
  42.               <tr>
  43.                 <td height="1" background="<%=request.getContextPath()%>/images/Lines.gif"></td>
  44.               </tr>
  45.             </table>
  46.           </td>
  47.         </tr>
  48.       </table>
  49.       <table width="100%" border="0" cellspacing="0" cellpadding="0">
  50.         <tr>
  51.           <td height="354" valign="top" style="padding:5px;">
  52.             <table width="640" border="0" cellPadding="0" cellSpacing="0" bgcolor="F4F4F4">
  53.               <tr>
  54.                 <td height="26" width="60"><div class="t4" align="center">序 号</div></td>
  55.                 <td width="440"><div class="t4" align="center">标 题</div></td>
  56.                 <td width="140"><div class="t4" align="center">所属模块</div></td>
  57.               </tr>
  58.             </table>
  59.             <c:forEach var="inf" items="${pageInfo.rows}" varStatus="status">
  60.               <c:if test="${(status.index + 1) % 2 != 0}">
  61.                 <table width="640" border="0" cellpadding="0" cellspacing="0">
  62.                   <tr>
  63.                     <td height="30" width="60"><div align="center"><c:out value="${status.index + 1}" /></div></td>
  64.                     <td width="440"><a href='<%=request.getContextPath()%>/Index.do?todo=OpenInfo&infID=<c:out value="${inf.inf_ID}" />&type=3&fMenuID=<c:out value="${inf.menu.men_Superior}" />'><c:out value="${inf.inf_Title}" /></a></td>
  65.                     <td width="140"><div align="center"><c:out value="${inf.menu.men_Name}" /></div></td>
  66.                   </tr>
  67.                 </table>
  68.               </c:if>
  69.               <c:if test="${(status.index + 1) % 2 == 0}">
  70.                 <table width="640" border="0" cellpadding="0" cellspacing="0" bgcolor="#f9f9f9">
  71.                   <tr>
  72.                     <td height="30" width="60"><div align="center"><c:out value="${status.index + 1}" /></div></td>
  73.                     <td width="440"><a href='<%=request.getContextPath()%>/Index.do?todo=OpenInfo&infID=<c:out value="${inf.inf_ID}" />&type=3&fMenuID=<c:out value="${inf.menu.men_Superior}" />'><c:out value="${inf.inf_Title}" /></a></td>
  74.                     <td width="140"><div align="center"><c:out value="${inf.menu.men_Name}" /></div></td>
  75.                   </tr>
  76.                 </table>
  77.               </c:if>
  78.             </c:forEach>
  79.             <table width="100%" border="0" cellspacing="0" cellpadding="0">
  80.               <tr>
  81.                 <td>
  82.                   <div align="right" >
  83.                     <c:if test="${sessionScope.Language == 'CN'}">
  84.                       共<c:out value="${pageInfo.totalRows}"/>条记录 共<c:out value="${pageInfo.totalPages}"/>页 当前第<c:out value="${pageInfo.currentPageNO+1}"/>页
  85.                     </c:if>
  86.                     <c:if test="${sessionScope.Language == 'EN'}">
  87.                       <c:out value="${pageInfo.totalRows}"/> Post in All, <c:out value="${pageInfo.totalPages}"/> Page in All, Page <c:out value="${pageInfo.currentPageNO+1}"/>
  88.                     </c:if>
  89.                     &nbsp;&nbsp;&nbsp;&nbsp;
  90.                     <c:choose>
  91.                       <c:when test="${pageInfo.firstPageNO>=pageInfo.currentPageNO}">
  92.                       <l:out CNLetter="第一页" ENLetter="first page"/>
  93.                       |
  94.                       <l:out CNLetter="上一页" ENLetter="Previous Page"/>
  95.                       </c:when>
  96.                       <c:otherwise>
  97.                         <a href="javascript:doPost('pageNo=<c:out value="${pageInfo.firstPageNO}"/>')"><l:out CNLetter="第一页" ENLetter="first page"/></a>
  98.                         |
  99.                         <a href="javascript:doPost('pageNo=<c:out value="${pageInfo.previousPageNO}"/>')"><l:out CNLetter="上一页" ENLetter="Previous Page"/></a>
  100.                       </c:otherwise>
  101.                     </c:choose>
  102.                     |
  103.                     <c:choose>
  104.                       <c:when test="${pageInfo.lastPageNO<=pageInfo.currentPageNO}">
  105.                       <l:out CNLetter="下一页" ENLetter="Next Page"/>
  106.                       |
  107.                       <l:out CNLetter="最后页" ENLetter="Last Page"/>
  108.                       </c:when>
  109.                       <c:otherwise>
  110.                         <a href="javascript:doPost('pageNo=<c:out value="${pageInfo.nextPageNO}"/>')"><l:out CNLetter="下一页" ENLetter="Next Page"/></a>
  111.                         |
  112.                         <a href="javascript:doPost('pageNo=<c:out value="${pageInfo.lastPageNO}"/>')"><l:out CNLetter="最后页" ENLetter="Last Page"/></a>
  113.                       </c:otherwise>
  114.                     </c:choose>&nbsp;&nbsp;
  115.                   </div>
  116.                 </td>
  117.               </tr>
  118.             </table>
  119.           </td>
  120.         </tr>
  121.       </table>
  122.     </td>
  123.   </tr>
  124. </table>
  125. <%@ include file="Bottom.jsp" %>
  126. </form>
  127. </body>
  128. </html>