succeedcaseView.jsp
资源名称:shop.rar [点击查看]
上传用户:yatiankong
上传日期:2014-05-16
资源大小:5604k
文件大小:4k
源码类别:
Applet
开发平台:
Java
- <%@ page contentType="text/html; charset=GB2312"%>
- <%@ page import="java.sql.*,java.lang.*"%>
- <jsp:useBean id="succeedcasePageBean" class="MyFly.Bean.succeedcasePageBean" scope="request"/>
- <%
- request.setCharacterEncoding("GB2312");
- %>
- <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}
- .style2 {color: #000000}
- </STYLE>
- <html>
- <head>
- <title>成功案例管理</title>
- <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
- </head>
- <body>
- <br>
- <table width="595" height="2%" border="0" align="center" cellpadding="0" cellspacing="0">
- <tr>
- <td height="35" align="center"><span class="style1">成功事例管理</span></td>
- </tr>
- </table>
- <table width="595" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF">
- <tr valign="middle" bgcolor="#799ae1">
- <td width="338" height="29" align="center"><font color="#FFFFFF">主题</font></td>
- <td width="121" align="center"><font color="#FFFFFF">添加时间</font></td>
- <td align="center"><font color="#FFFFFF">编辑</font></td>
- <td align="center"><font color="#FFFFFF">删除</font></td>
- </tr>
- <%
- int size=10;
- String strNum=request.getParameter("pageNum");
- int cur;
- if(strNum == null || strNum.equals(""))
- {
- cur=1;
- }
- else
- {
- cur=Integer.parseInt(strNum);//取得要显示的页
- }
- succeedcasePageBean.init(size);
- int pageNum=succeedcasePageBean.get_pageCount(); //取得总页数
- succeedcasePageBean.get_pageRow(cur);
- for(int i=0; i<succeedcasePageBean.getItems(); i++)
- {
- %>
- <tr>
- <td height="28"> <%=succeedcasePageBean.getTopic(i)%></td>
- <td align="left"> <%=succeedcasePageBean.getAppendTime(i)%></a></td>
- <td width="62" align="center"><a href="succeedcaseEdit.jsp?index=<%=succeedcasePageBean.getSucceedID(i)%>"><img src="../images/admin/edit.gif" alt="编辑" width="19" height="18" border="0"></a></td>
- <td width="64" align="center"><a href="succeedcaseDel.jsp?index=<%=succeedcasePageBean.getSucceedID(i)%>"><img src="../images/admin/del.gif" alt="é?3yà???" width="16" height="16" border="0"></a></td>
- </tr>
- <%
- }
- %>
- </table>
- <form name="form1" method="post" action="succeedcaseAdd.jsp">
- <div align="center">
- <input type="submit" name="Submit" value="添加">
- </div>
- </form>
- <div align="center"><a href="succeedcaseView.jsp?pageNum=<%=1%>">首页
- <%
- if(cur > 1)
- {
- %>
- <a href="succeedcaseView.jsp?pageNum=<%=cur-1 %>">上一页</a>
- <%
- }
- %>
- <%
- if(cur < pageNum)
- {
- %>
- <a href="succeedcaseView.jsp?pageNum=<%=cur+1 %>">下一页</a>
- <%
- }
- %>
- <a href="succeedcaseView.jsp?pageNum=<%=pageNum%>">尾页</a> 页次: <STRONG><FONT
- color=red><%=cur%></FONT>/<%=pageNum%></STRONG>页 <B><%=size%></B>个<span class="style2"> 事例</span>/页 转到:
- <script language="javascript">
- function fun(str)
- {
- window.open("succeedcaseView.jsp?pageNum=" +str);
- }
- </script>
- <SELECT name=sel
- onchange="fun(sel.options[sel.options.selectedIndex].value)" size=cur>
- <%
- for(int i=pageNum; i>=1; i--)
- {
- %>
- <OPTION selected value=<%=i%>>第<%=i%>页</OPTION>
- <%
- }
- %>
- </SELECT>
- </div>
- </body>
- </html>