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