截止2004年12月16日 |
本站源码总量(商业源码除外)RAR压缩为 4,206,733 KB。其中免费源码为 1,124,495 KB,会员源码为 3,082,238 KB!
C/C++ |
129,555 KB |
Delphi |
1,258,381 KB |
Java |
120,937 KB |
.Net |
36,886 KB |
PowerBuilder |
954,525 KB |
Visual Basic |
923,454 KB |
ASP |
259,795 KB |
JSP |
4,987 KB |
其他 |
94,723 KB |
|
|
在repeater、datalist控件中使用分页功能 |
|
repeater和datalist控件可以很快的、灵活地在.aspx页面上显示数据,但
它们都没有分页功能;虽然datagrid控件有分页功能,但使用起来却太古板了、灵活性太差了。
很多文章都在讨论repeater、datalist的分页功能的问题,下面我们就用
pagedatasource这个类在repeater中进行分页:
pagedatasource是datagrid中封装的一个类,datagrid就是用这个来实现分页功能的;
我们也可以用这个类在datalist、repeater中进行分页,大家只要看了下面的程序示例
问题就可以解决了。
<%@Import namespace="System.Data"%>
<%@Import namespace="System.Data.SqlClient"%>
<html>
<head>
<title>default</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script language="C#" runat="server">
public void Page_Load Object src,EventArgs e)
{SqlConnection cnn=new SqlConnection "server=zzl;uid=sa;pwd=970480;database=zzl");//连接数据库
SqlDataAdapter mycommand=new SqlDataAdapter "select * from start1",cnn);//数据操作,而表start1及其数据自己sqlserver中做
DataSet ds=new DataSet );
mycommand.Fill ds); //实例dataset对象为ds,并把数据填充到ds上
PagedDataSource pp=new PagedDataSource );//对分页功能的类实例对象
pp.DataSource=ds.Tables[0].DefaultView;//把数据赋予对象pp
pp.AllowPaging=true;//允许进行分页
pp.PageSize=6;//设置每页数据的个数
int cpage;//这个整数用来分析分页页数的
if Request.QueryString["page"]!=null)//这个判断语句的作用是对cpage进行赋值
cpage=Convert.ToInt32 Request.QueryString["page"]);
else
cpage=1;
pp.CurrentPageIndex=cpage-1;//pp对象的当前引索值,因为引索值是从0开始,cpage从1开始所以要减1
if !pp.IsFirstPage)//Request.CurrentExecutionFilePath为当前的程序的文件名,直接写也可以
pre.NavigateUrl=Request.CurrentExecutionFilePath + "?page=" + Convert.ToString cpage-1);
if !pp.IsLastPage)
next.NavigateUrl=Request.CurrentExecutionFilePath+ "?page=" + Convert.ToString cpage+1);
repeater1.DataSource=pp;
repeater1.DataBind );}
</script>
</head>
<body>
<table width="100%" border="0">
<tr><TD> <asp:label id="current" runat="server"/></TD></tr>
<tr><td> <asp:hyperlink id="pre" runat="server"><<</asp:hyperlink>
<asp:hyperlink id="next" runat="server">>></asp:hyperlink></td></tr></table>
<asp:repeater id="repeater1" runat="server">
<itemtemplate>
<table width="100%" border="0">
<tr><td> <%#DataBinder.Eval Container.DataItem,"product")%></td></tr>
<tr><td> </td></tr></table></itemtemplate></asp:repeater>
</body>
</html>
|
|
|
文章出处: |
|
发表时间:2004-11-22 23:06:03 |
共1条数据记录,分1页显示 上一页 < [1] > 下一页 |
|