<html>
<head>
<%@ page contentType="text/html;charset=gb2312" %>
<title>会员管理</title>
<link rel=stylesheet href="../style.css" type="text/css">
</head>
<body>
<center><p><h4><font color="blue">会员管理</font></h4></p>
<%@ page language="java" import="java.sql.*" %>
<%Class.forName("oracle.jdbc.driver.OracleDriver").newInstance();  
String url="jdbc:oracle:thin:@localhost:1521:myoracle";  
//orcl为你的数据库的SID  
String user="test";  
String password="123";  
Connection conn= DriverManager.getConnection(url,user,password);  
Statement stmt=conn.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE);  
//指定行数
int pageLine=3;
int totalRec=0;
int totalSub=0;
int intPage=1;
int i;
if (request.getParameter("page")!=null)
intPage=Integer.parseInt(request.getParameter("page"));try{
ResultSet countrs;
//取得总记录数
countrs=stmt.executeQuery("select count(*) as cnt from TABLE1  order by aaa desc");
while(countrs.next())
 totalRec=countrs.getInt("cnt");
countrs.close();
}
catch(Exception e){
   e.printStackTrace();
}
 out.println(totalRec);
//取得总页数
int intPageCount=0;
intPageCount = (totalRec+pageLine-1) / pageLine;
%>
<%
ResultSet RS = stmt.executeQuery("select * from TABLE1  order by aaa desc");
String aaa;
String bbb;%>
<table border='1' cellspacing='0' width='100%' bgcolor='#d7e3b9' bordercolorlight='#green' bordercolordark='#ECF5FF'>
<tr bgcolor='#c8cc98' align='center'>
   <td width='8%'>ID</td>
   <td width='14%'>会员名</td>
</tr>
<%
if (intPageCount>0)
{
           for(i=1;i<=(intPage-1)*pageLine;i++)
RS.next();
   for(i=1;i<=pageLine;i++) {
if (RS.next()) {                        aaa=RS.getString("aaa");
                        bbb=RS.getString("bbb");
%>
<tr>
   <td width='8%' align='center'><%=aaa%></td>
   <td width='14%' align='center'><%=bbb%></td>
  
</tr>
<%
  }
}
RS.close();
}
%>
<!--以下用于分页显示 -->
<%
 out.print("<tr>");  
 if (intPageCount*pageLine<totalRec) 
   intPageCount++;
 if (intPage>intPageCount )
intPage=intPageCount;
 if (intPage < 1 )
intPage=1;
out.print("<form method='POST'  name=fPageNum  action='oracle.jsp'>");
out.print("<p align='left'>&gt;&gt;分页&nbsp;");
  
   if (intPage<2)
     out.print("<font color='999966'>首页 上一页</font>&nbsp;");
   else{   
   out.print("<a href='oracle.jsp?page=1'>首页</a>&nbsp;");   
     out.print("<a href='oracle.jsp?page=" + (intPage-1) + "'>上一页</a>&nbsp;"   );
     }
  
     
   if( intPage-intPageCount>=0 )
     out.print("<font color='999966'>下一页 尾页</font>"   );
   else{   
  
     out.print("<a href='oracle.jsp?page=" + (intPage+1)+ "'>下一页</a> <a href='oracle.jsp?page=" + intPageCount + "'>尾页</a>");
     }
 
        out.print("&nbsp;页次:<strong><font color=red>"+intPage+"</font>/"+intPageCount+"</strong>页 "   );
    out.print("&nbsp;共<b>"+totalRec+"</b>条记录 <b>"+pageLine+"</b>条/页 "   );
    out.print(" 转到第<input type='text' name='page' size=2 maxlength=10 class=smallInput value="+intPage+">");   
    out.print("页<input class=buttonface type='submit'  value='GO'  name='cndok'></span></p></form>"  );  out.print("</td>");
out.print("</tr>"); 

%>
</table></p>
<a href="javascript:window.close();">[关闭]</a>
</center>
</body>
</html>