ListNews.jsp
资源名称:mxnhnews.rar [点击查看]
上传用户:sdtxjx
上传日期:2022-07-09
资源大小:2937k
文件大小:1k
源码类别:
Jsp/Servlet
开发平台:
Java
- <%@ page contentType="text/html; charset=GBK" language="java" buffer="32kb"%>
- <%@ page import="dreamtime.dreamnews.*"%>
- <%@ include file="Session.jsp"%>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=GBK">
- <link href="css/bodystyle.css" rel="stylesheet" type="text/css">
- <script src="js/post.js"></script>
- <script src="js/news.js"></script>
- <title>管理新闻列表</title></head>
- <body>
- <%
- request.setCharacterEncoding("GBK"); //设置编码方式为GBK
- News news = new News();
- Function Fun = new Function();
- String strPage = request.getParameter("intPage");
- String sPage = request.getContextPath() + request.getServletPath() + "?";
- String sOK = news.ListNews(sPage,strPage);
- if (sOK.equals("No"))
- {
- out.println(Fun.OutError("读取新闻列表操作出错!"));
- }
- else
- {
- out.println(sOK);
- }
- %>
- <br><br>
- </body>
- </html>