ListNews.jsp
上传用户:sdtxjx
上传日期:2022-07-09
资源大小:2937k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=GBK" language="java" buffer="32kb"%>
  2. <%@ page import="dreamtime.dreamnews.*"%>
  3. <%@ include file="Session.jsp"%>
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=GBK">
  7. <link href="css/bodystyle.css" rel="stylesheet" type="text/css">
  8. <script src="js/post.js"></script>
  9. <script src="js/news.js"></script>
  10. <title>管理新闻列表</title></head>
  11. <body>
  12. <%
  13. request.setCharacterEncoding("GBK");   //设置编码方式为GBK
  14. News news = new News();
  15. Function Fun = new Function();
  16. String strPage = request.getParameter("intPage");
  17. String sPage = request.getContextPath() + request.getServletPath() + "?";
  18. String sOK = news.ListNews(sPage,strPage);
  19. if (sOK.equals("No"))
  20. {
  21. out.println(Fun.OutError("读取新闻列表操作出错!"));
  22. }
  23. else
  24. {
  25. out.println(sOK);
  26. }
  27. %>
  28. <br><br>
  29. </body>
  30. </html>