主頁(yè) > 知識(shí)庫(kù) > jsp分頁(yè)顯示完整實(shí)例

jsp分頁(yè)顯示完整實(shí)例

熱門(mén)標(biāo)簽:杭州ai語(yǔ)音電銷(xiāo)機(jī)器人功能 商洛電銷(xiāo) 電銷(xiāo)機(jī)器人好賣(mài)么 地圖標(biāo)注線(xiàn)上教程 電銷(xiāo)機(jī)器人是有一些什么技術(shù) 高德地圖標(biāo)注樣式 杭州語(yǔ)音電銷(xiāo)機(jī)器人軟件 四川保險(xiǎn)智能外呼系統(tǒng)商家 北票市地圖標(biāo)注

本文實(shí)例講述了jsp分頁(yè)顯示的實(shí)現(xiàn)方法。分享給大家供大家參考。

具體實(shí)現(xiàn)方法如下:

復(fù)制代碼 代碼如下:
%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
%@include file ="../inc/ChkPwd.jsp"%>
%@include file="../DB.jsp"%>
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
html xmlns="http://www.w3.org/1999/xhtml">
head>
meta name="robots" content="noindex,nofollow" />
meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
title>文章管理/title>
link href="Style.css" rel="stylesheet" type="text/css" />
/head>
body>
 
table width="98%" height="77%" border="0" cellpadding="0" cellspacing="0">
 tr class="STYLE1">
      td width="100%" height="26" background="images/admin_bg_1.gif">strong>font color="#FFFFFF">--span class="STYLE1">內(nèi)容管理/span>/font>/strong>/td>
  /tr>
  tr>
  td colspan="10">
  /td>
  /tr>
 
  tr class="title">
          td  height="25" background="images/admin_bg_1.gif" class="t2">|nbsp;
%
String op;
String ID = request.getParameter("id");
op = request.getParameter("op");
if(op==null){
 op = "my";
}
if (op.equals("del") ID!=null){
 String bbb = new String(request.getParameter("BigClassName").getBytes("iso8859_1"));
 Statement stmt_ChannelDEL=conn.createStatement();
 String Sqldel="delete from hl_news where id=" + ID;
 int shan=stmt_ChannelDEL.executeUpdate(Sqldel);
 if (shan>0)
 {
  out.print("script type="text/javascript"> alert("已成功刪除!"); window.location.href='Hanye_Manages.jsp?BigClassName="+bbb+"'; /script>");
 }
 stmt_ChannelDEL.close();
 return ;
}
 Statement stmtA=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_READ_ONLY);
 String SqlA="Select * from hl_smallclass WHERE bigname='行業(yè)新聞' order by id asc";
 ResultSet RsA=stmtA.executeQuery(SqlA);
 while (RsA.next()) {
 
%>
          a class='t2' href='Hanye_Manages.jsp?modi=新聞BigClassName=%=RsA.getString("smallname")%>'>%=RsA.getString("smallname")%>/a> |
%
}
 RsA.close(); //關(guān)閉記錄集對(duì)象
 stmtA.close(); //關(guān)閉語(yǔ)句對(duì)象
%>   
/td>
        /tr>
       
tr>
td height="20">/td>
/tr>
  tr>
    td align="center" valign="top" bgcolor="#ECF5FF">
     
form name="form2" action="list.asp?action=delallmodi=新聞" method="post">
        table width="100%" cellpadding="3" cellspacing="2" bgcolor="#FFFFFF" style="word-break:break-all">
  tr class="t2">
            td width="32"  height="28" align="center" background="images/admin_bg_1.gif" bgcolor="#BBDAFF" class="STYLE1" >ID/td>
  
   td width="80" align="center" background="images/admin_bg_1.gif" bgcolor="#BBDAFF" class="STYLE1" >新聞大類(lèi)/td>
  
     td width="88" align="center" background="images/admin_bg_1.gif" bgcolor="#BBDAFF" class="STYLE1" >新聞小類(lèi)/td>
     
            td width="291" align="center" background="images/admin_bg_1.gif" bgcolor="#BBDAFF" class="STYLE1" style="word-break:break-all" >新聞標(biāo)題/td>
  
     td width="179" align="center" background="images/admin_bg_1.gif" bgcolor="#BBDAFF" class="STYLE1" >新聞圖片/td>
   
   td width="76" align="center" background="images/admin_bg_1.gif" bgcolor="#BBDAFF" class="STYLE1" >發(fā)布時(shí)間/td>
  
   td width="64" align="center" background="images/admin_bg_1.gif" bgcolor="#BBDAFF" class="STYLE1">操作/td>
          /tr>
%
int pageSize=10;  //每頁(yè)顯示的文章數(shù)
int showPage=1;   //當(dāng)前頁(yè)面顯示的頁(yè)號(hào)
int recCount=0;   //ResultSet中的文章總數(shù)
int pageCount=0;  //分頁(yè)后的總頁(yè)數(shù)
String SqlArticle;
String toPage = request.getParameter("page");
String bgname = new String(request.getParameter("BigClassName").getBytes("iso8859_1"));
Statement stmt_Article=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_READ_ONLY);
SqlArticle="Select * from hl_news where smallname='"+bgname+"' order by ID DESC";
ResultSet RsArticle=stmt_Article.executeQuery(SqlArticle);
 if(RsArticle.next()) {
 RsArticle.last();//指針飛到最后
 recCount=RsArticle.getRow();//去除最后一行的行號(hào)
 pageCount=((recCount%pageSize)==0?(recCount/pageSize):(recCount/pageSize)+1);//得到一共可以分多少頁(yè)
 if(toPage!=null)
  showPage=Integer.parseInt(toPage);
  RsArticle.absolute((showPage-1)*pageSize+1);//跳到第showpage頁(yè)的第一條
 for(int i=1;i=pageSize;i++){
  int NID=RsArticle.getInt("ID");
  String img = RsArticle.getString("img");
  String ttt = RsArticle.getString("times");
  //ttt=ttt.substring(0,10);
 %>   
    tr class="STYLE1">
            td width="32"  height="22" align="center" bgcolor="#BBDAFF">%=NID%>/td>
  
            td align="center" bgcolor="#BBDAFF" >%=RsArticle.getString("bigname")%>/td>
  
            td align="center" bgcolor="#BBDAFF" >%=RsArticle.getString("smallname")%>/td>
  
   td align="left" bgcolor="#BBDAFF" >%=RsArticle.getString("Title")%>/td>
  
   td align="center" bgcolor="#BBDAFF" >a href="/%=img%>" target="_blank">%=img%>/a>/td>
  
            td align="center" bgcolor="#BBDAFF" >%=ttt%>/td>
  
            td width="64" align="center" bgcolor="#BBDAFF" class="STYLE1">a href="Hanye_edit.jsp?id=%=NID%>modi=新聞">修改/a>|a href="Hanye_Manages.jsp?id=%=NID%>op=delBigClassName=%=bgname%>" onclick="return confirm('刪除后將不能恢復(fù),你確定刪除么?')">刪除/a>/td>
          /tr>
%
 if(!RsArticle.next())
  break;
 }
}
%>     
    
    input name='AllID' type='hidden' value=>
    
      /table>
        table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
          tr class="STYLE1">
    td width="50%" align="left" background="images/admin_bg_1.gif">
    span class="t2">strong>/strong>
        
         /span>nbsp;nbsp;
      label>
       
        /label>
      /td>
          td width="56%" align="center" background="images/admin_bg_1.gif">
      div align="left" class="t2">
        共%=pageCount%>頁(yè) %  for(int i=1;i=pageCount;i++){  %> % if(i==showPage){ %>b>%=i %>/b>% }else{ %>[a href='Hanye_Manages.jsp?BigClassName=%=bgname%>page=%=i %>modi=新聞'>%=i %>/a>] % } } %>
           /div>/td>
        /tr>
      /table>
   /form>
 form name="form1" method="post" action="Hanye_Manage.jsp"> table width="51%" border="0" cellspacing="0" cellpadding="0">
 
      tr class="t4">
        td width="34%" height="23">span class="STYLE1">查詢(xún):/span>
          label>
            select name="select">
     option value="ID">按ID查詢(xún)/option>
     option value="title">按標(biāo)題查詢(xún)/option>
     option value="times">按時(shí)間查詢(xún)/option>
            /select>
            /label>
          label>
            input type="text" name="k">
            input name="Submit" type="submit" class="t5" value="提交">
            /label>        /td>
      /tr>
    /table>
 /form>
    br>/td>
  /tr>
/table>

%
RsArticle.close();
stmt_Article.close();
conn.close();
%>
/body>
/html>

希望本文所述對(duì)大家的jsp程序設(shè)計(jì)有所幫助。

您可能感興趣的文章:
  • jsp分頁(yè)顯示的實(shí)現(xiàn)代碼
  • JSP分頁(yè)顯示的實(shí)例代碼
  • 一個(gè)實(shí)用的JSP分頁(yè)代碼
  • jsp hibernate的分頁(yè)代碼
  • JSP實(shí)現(xiàn)的簡(jiǎn)單分頁(yè)示例
  • JSP自定義分頁(yè)標(biāo)簽TAG全過(guò)程
  • 一個(gè)通用的jsp分頁(yè)P(yáng)ageBean
  • jsp讀取數(shù)據(jù)庫(kù)實(shí)現(xiàn)分頁(yè)技術(shù)簡(jiǎn)析
  • jsp+servlet+javabean實(shí)現(xiàn)數(shù)據(jù)分頁(yè)方法完整實(shí)例
  • 簡(jiǎn)單實(shí)現(xiàn)JSP分頁(yè)顯示效果

標(biāo)簽:宿州 丹東 青島 江西 云浮 西藏 紅河 貴州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《jsp分頁(yè)顯示完整實(shí)例》,本文關(guān)鍵詞  jsp,分頁(yè),顯示,完整,實(shí)例,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《jsp分頁(yè)顯示完整實(shí)例》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于jsp分頁(yè)顯示完整實(shí)例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章