light_productView.jsp
上传用户:yatiankong
上传日期:2014-05-16
资源大小:5604k
文件大小:4k
源码类别:

Applet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=GB2312"%>
  2. <%@ page import="java.sql.*,java.lang.*"%>
  3. <jsp:useBean id="light_productBeans" class="MyFly.Bean.light_productBeans" scope="request"/>
  4. <STYLE type=text/css>
  5. BODY {
  6. BACKGROUND: #799ae1; FONT: 9pt 宋体; MARGIN: 0px
  7. }
  8. TABLE {
  9. BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-RIGHT: 0px; BORDER-TOP: 0px
  10. }
  11. TD {
  12. FONT: 12px 宋体
  13. }
  14. IMG {
  15. BORDER-BOTTOM: 0px; BORDER-LEFT: 0px; BORDER-RIGHT: 0px; BORDER-TOP: 0px; VERTICAL-ALIGN: bottom
  16. }
  17. A {
  18. COLOR: #000000; FONT: 12px 宋体; TEXT-DECORATION: none
  19. }
  20. A:hover {
  21. COLOR: #428eff; TEXT-DECORATION: underline
  22. }
  23. .sec_menu {
  24. BACKGROUND: #d6dff7; BORDER-BOTTOM: white 1px solid; BORDER-LEFT: white 1px solid; BORDER-RIGHT: white 1px solid; OVERFLOW: hidden
  25. }
  26. .menu_title {
  27. }
  28. .menu_title SPAN {
  29. COLOR: #215dc6; FONT-WEIGHT: bold; LEFT: 8px; POSITION: relative; TOP: 2px
  30. }
  31. .menu_title2 {
  32. }
  33. .menu_title2 SPAN {
  34. COLOR: #428eff; FONT-WEIGHT: bold; LEFT: 8px; POSITION: relative; TOP: 2px
  35. }
  36. .style1 {color: #FF0000}
  37. </STYLE>
  38. <html>
  39. <head>
  40. <title>产品靓点管理</title>
  41. <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
  42. </head>
  43. <body>
  44. <p>&nbsp;</p>
  45. <table width="595" height="2%" border="0" align="center" cellpadding="0" cellspacing="0">
  46.   <tr> 
  47.     <td height="33" align="center"><span class="style1">产品靓点管理</span></td>
  48.   </tr>
  49. </table>
  50. <table width="696" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF">
  51.   <tr valign="middle" bgcolor="#799ae1"> 
  52.     <td width="420" height="29" align="center"><font color="#FFFFFF">标题</font></td>
  53.     <td width="136" align="center"><font color="#FFFFFF">添加时间</font></td>
  54.     <td align="center"><font color="#FFFFFF">编辑</font></td>
  55.     <td align="center"><font color="#FFFFFF">删除</font></td>
  56.   </tr>
  57.    <%
  58.       int size=15;
  59.       String strNum=request.getParameter("pageNum");
  60.   int cur;
  61.    light_productBeans.init(size);
  62.   int pageNum=light_productBeans.get_pageCount(); //取得总页数
  63.       if(strNum == null || strNum.equals(""))
  64.   {
  65.        cur=1;
  66.   }
  67.   else
  68.   {
  69.            cur=Integer.parseInt(strNum);//取得要显示的页
  70.   }
  71.  if(cur < 1)
  72.   {
  73.      cur = 1;
  74.   }
  75.   if(cur > pageNum)
  76.   {
  77.      cur = pageNum;
  78.   }
  79.   
  80.   light_productBeans.get_pageRow(cur);
  81.   
  82.   for(int i=0; i<light_productBeans.getItems(); i++)
  83.   {
  84.  %>
  85.   <tr> 
  86.     <td height="28" align="center">&nbsp;<%=light_productBeans.getTitle(i)%></td>
  87.     <td align="center">&nbsp;<%=light_productBeans.getAppendTime(i)%></a></td>
  88. <td width="74" align="center"><a href="light_productEdit.jsp?index=<%=light_productBeans.getLightID(i)%>"><img src="../images/admin/edit.gif" alt="编辑" width="19" height="18" border="0"></a></td>
  89.     <td width="56" align="center"><a href="light_productDel.jsp?index=<%=light_productBeans.getLightID(i)%>"><img src="../images/admin/del.gif" alt="删除" width="16" height="16" border="0"></a></td>
  90.   </tr>
  91. <%    
  92. }
  93. %>
  94. </table>
  95. <div align="center"><a href="light_productView.jsp?pageNum=<%=1%>">首页 
  96.      <a href="light_productView.jsp?pageNum=<%=cur-1 %>">上一页</a> &nbsp;
  97.       
  98.      <a href="light_productView.jsp?pageNum=<%=cur+1 %>">下一页</a> 
  99.     
  100.      <a href="light_productView.jsp?pageNum=<%=pageNum%>">尾页</a>&nbsp;页次: <STRONG><FONT 
  101.                   color=red><%=cur%></FONT>/<%=pageNum%></STRONG>页 &nbsp;<B><%=size%></B>条/页&nbsp;转到:
  102.                          <script language="javascript">
  103.    function fun(str)
  104.    {
  105.       window.location="light_productView.jsp?pageNum=" +str;
  106.   
  107.    }
  108.      </script>
  109.    
  110.      <SELECT name=sel
  111.                   onchange="fun(sel.options[sel.options.selectedIndex].value)" size=cur>
  112.      <% 
  113.      for(int i=pageNum; i>=1; i--)
  114.  {
  115.  %>
  116.                            <OPTION selected value=<%=i%>>第<%=i%>页</OPTION>
  117.            <%
  118. }
  119. %>
  120.                          </SELECT>
  121. </div>
  122. <form name="form1" method="post" action="light_productAdd.jsp">
  123.                           <div align="center">
  124.                             <input type="submit" name="Submit" value="添加">
  125.                           </div>
  126. </form>
  127. </body>
  128. </html>