searchResult.jsp
上传用户:bjjsss
上传日期:2018-06-10
资源大小:4236k
文件大小:2k
源码类别:

SilverLight

开发平台:

Java

  1. <%@ page contentType="text/html;charset=UTF-8" language="java"%>
  2. <%@ page import="cn.com.blogonline.*"%>
  3. <%@ page import="java.util.*"%>
  4. <%
  5. List searchList = (List)session.getAttribute(Constants.ARTICLE_LIST_KEY);
  6. Article article = null;
  7. %>
  8. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  9. <html>
  10. <head>
  11. <title>搜索结果信息</title>
  12. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  13. <link rel="StyleSheet" type="text/css" href="images/mystyle.css">
  14. </head>
  15. <body>
  16. <table height="45" cellspacing="0" cellpadding="0" width="750" background="images/bk_11.jpg" border="0">
  17. </table>
  18. <table height="19" cellspacing="0" cellpadding="0" width="750" bgcolor="#ff0000" border="0">
  19. <tr>
  20. <td width="3"></td>
  21. <td width="252"></td>
  22. <td style="PADDING-TOP: 2px" align="middle">
  23. <p align="center">
  24. <b><font color="#ffffff">搜索结果显示</font></b>
  25. </p>
  26. </td>
  27. <td width="252"></td>
  28. <td width="3"></td>
  29. </tr>
  30. </table>
  31. <table height="45" cellspacing="0" cellpadding="0" width="750" background="images/bk_11.jpg" border="0">
  32. <tbody>
  33. <tr>
  34. <td align="middle"></td>
  35. </tr>
  36. </tbody>
  37. </table>
  38. <table border="1" width="750" bordercolor="#FCD447">
  39. <%if(searchList != null ){
  40. System.out.println(searchList.size());
  41.        for(int i = 0;i < searchList.size();i++)
  42.        {  
  43.         article = (Article)searchList.get(i);
  44.       %>
  45. <tr>
  46. <td width="99%" valign="top">
  47. <div>
  48. 文章标题:<a href="openArticle?articleid=<%=article.getId()%>" target="_blank"><%=article.getTitle()%></a>
  49. </div>
  50. <div class="systemLHeight180">
  51. <%=article.getContent()%>
  52. <div class="author" style="width: 740; height: 19">
  53. 发表时间:
  54. <%=article.getPubtime()%>
  55. </div>
  56. </div>
  57. </td>
  58. </tr>
  59. <%
  60.          }
  61.       } %>
  62. </table>
  63. <hr style="color:orange" width="90%">
  64. <p align="center">
  65. <font color="#FF0000"><b>BlogOnline 版权所有</b></font>
  66. </p>
  67. </body>
  68. </html>