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

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

开发平台:

JavaScript

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