project_newView.jsp
资源名称:shop.rar [点击查看]
上传用户:yatiankong
上传日期:2014-05-16
资源大小:5604k
文件大小:5k
源码类别:
Applet
开发平台:
Java
- <%@ page contentType="text/html; charset=GB2312"%>
- <%@ page import="java.sql.*,java.lang.*"%>
- <jsp:useBean id="project_newPageBean" class="MyFly.Bean.project_newPageBean" scope="request"/>
- <STYLE type=text/css>
- BODY {
- BACKGROUND: #799ae1; FONT: 9pt 宋体; MARGIN: 0px
- }
- TABLE {
- BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-RIGHT: 0px; BORDER-TOP: 0px
- }
- TD {
- FONT: 12px 宋体
- }
- IMG {
- BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-RIGHT: 0px; BORDER-TOP: 0px; VERTICAL-ALIGN: bottom
- }
- A {
- COLOR: #000000; FONT: 12px 宋体; TEXT-DECORATION: none
- }
- A:hover {
- COLOR: #428eff; TEXT-DECORATION: underline
- }
- .sec_menu {
- BACKGROUND: #d6dff7; BORDER-BOTTOM: white 1px solid; BORDER-LEFT: white 1px solid; BORDER-RIGHT: white 1px solid; OVERFLOW: hidden
- }
- .menu_title {
- }
- .menu_title SPAN {
- COLOR: #215dc6; FONT-WEIGHT: bold; LEFT: 8px; POSITION: relative; TOP: 2px
- }
- .menu_title2 {
- }
- .menu_title2 SPAN {
- COLOR: #428eff; FONT-WEIGHT: bold; LEFT: 8px; POSITION: relative; TOP: 2px
- }
- .style1 {color: #FF0000}
- </STYLE>
- <script language="javascript" src="../js/column.js"></script>
- <html>
- <head>
- <title>事业新闻</title>
- <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
- </head>
- <body>
- <p> </p>
- <table width="595" height="2%" border="0" align="center" cellpadding="0" cellspacing="0">
- <tr>
- <td height="33" align="center"><span class="style1">事业新闻管理</span></td>
- </tr>
- </table>
- <table width="637" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF">
- <tr valign="middle" bgcolor="#799ae1">
- <td width="337" height="29" align="center"><font color="#FFFFFF">文章标题</font></td>
- <td width="138" height="29" align="center"><font color="#FFFFFF">添加时间</font></td>
- <td width="79" align="center"><font color="#FFFFFF">编辑</font></td>
- <td width="73" align="center"><font color="#FFFFFF">删除</font></td>
- </tr>
- <%
- int size=15;
- String strNum=request.getParameter("pageNum");
- int cur;
- project_newPageBean.init(size);
- int pageNum=project_newPageBean.get_pageCount(); //取得总页数
- if(strNum == null || strNum.equals(""))
- {
- cur=1;
- }
- else
- {
- cur=Integer.parseInt(strNum);//取得要显示的页
- }
- if(cur < 1)
- {
- cur = 1;
- }
- if(cur > pageNum)
- {
- cur = pageNum;
- }
- project_newPageBean.get_pageRow(cur);
- for(int i=0; i<project_newPageBean.getItems(); i++)
- {
- %>
- <tr>
- <td height="28" align="center"> <%=project_newPageBean.getTitle(i)%></td>
- <td height="28" align="center"> <%=project_newPageBean.getAppendTime(i)%></td>
- <td width="79" align="center"><a href="product_newEdit.jsp?index=<%=project_newPageBean.getID(i)%>"><img src="../images/admin/edit.gif" alt="" width="19" height="18" border="0"></a></td>
- <td width="73" align="center"><a href="product_newDel.jsp?index=<%=project_newPageBean.getID(i)%>"><img src="../images/admin/del.gif" alt="" width="16" height="16" border="0"></a></td>
- </tr>
- <%
- }
- %>
- </table>
- <br>
- <a href="project_newView.jsp?pageNum=<%=1%>">首页
- <a href="project_newView.jsp?pageNum=<%=cur-1 %>">上一页</a>
- <a href="project_newView.jsp?pageNum=<%=cur+1 %>">下一页</a>
- <a href="project_newView.jsp?pageNum=<%=pageNum%>">尾页</a> 页次:<font color="#FF0000"><%=cur%></font><%=pageNum%><form name="form1" method="post" action="project_newAdd.jsp">
-
- <input type="submit" name="Submit" value="添加">
- </form>
- <p> </p>
- <%@ page contentType="text/html; charset=GB2312"%>
- <p> </p>
- </body>
- </html>