main.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 articleList = (List)session.getAttribute(Constants.ARTICLE_LIST_KEY);
  6. Article article = null;
  7. Integer tpage=(Integer)session.getAttribute(Constants.CUR_PAGEID_KEY);
  8. int pageId=tpage.intValue();
  9. Integer tSortId=(Integer)session.getAttribute(Constants.CUR_SORTID_KEY);
  10. int sortId=tSortId.intValue();
  11. %>
  12. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  13. <html>
  14. <head>
  15. <title>显示主页面</title>
  16. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  17. <link rel="StyleSheet" type="text/css" href="images/mystyle.css">
  18. </head>
  19. <body>
  20. <table border="1" width="550" bordercolor="#FF9900">
  21. <tr>
  22. <td width="100%">
  23. <p align="right">
  24. <b><font color="#FF0000"><a href="newArticle.jsp">发表文章</a></font></b>
  25. </p>
  26. </td>
  27. </tr>
  28. <%if(articleList != null ){
  29. System.out.println(articleList.size());
  30.        for(int i = 0;i < articleList.size();i++)
  31.        {  
  32.         article = (Article)articleList.get(i);
  33.       %>
  34. <tr>
  35. <td width="100%">
  36. <b><font color="#FF0000"><%=article.getTitle()%></font></b>
  37. <p>
  38. <b><font color="#FF0000"><%=article.getContent()%></font></b>
  39. </p>
  40. <p align="right">
  41. <b><font color="#FF0000"><a href="showFeedback?articleid=<%=article.getId()%>">查看评论</a></font></b>
  42. </p>
  43. </td>
  44. </tr>
  45. <%
  46.          }
  47.       } %>
  48. <tr>
  49. <td width="100%">
  50. <p align="center">
  51. | <font color="#999999"> <a href="blogOperate?pageid=<%=pageId-1%>">上页</a></font> | <a href="blogOperate?pageid=<%=pageId+1%>">下页</a> |
  52. </p>
  53. </td>
  54. </tr>
  55. </table>
  56. </body>
  57. </html>