/// <summary>
///
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="replist">控件ID</param>
/// <param name="DataSource">數(shù)據(jù)源</param>
/// <param name="IndexPage">當(dāng)前頁(yè)</param>
/// <param name="PageSize">每頁(yè)數(shù)據(jù)條數(shù)</param>
/// <param name="PageParemart">頁(yè)面搜索參數(shù) like &a=a&b=b </param>
/// <returns></returns>
public static string ShowPage<T>(System.Web.UI.WebControls.Repeater replist, IQueryable<T> DataSource, int IndexPage, int PageSize, string PageParemart)
{
string rtnStr = "";
int sourceCount = DataSource.Count();
if (sourceCount == 0)//數(shù)據(jù)源無(wú)數(shù)據(jù)
{
rtnStr = string.Empty;
}
else
{
int yutemp = sourceCount % PageSize;
int pagecounts = (yutemp == 0) ? (sourceCount / PageSize) : (sourceCount / PageSize + 1);//總頁(yè)數(shù)
rtnStr = " <div style='width:100%;'><div style=' float:left;'>頁(yè)次:" + IndexPage + "頁(yè)/" + pagecounts + "頁(yè),共" + sourceCount + "條記錄</div> ";
if (pagecounts == 1) //總共一頁(yè)數(shù)據(jù)
{
replist.DataSource = DataSource;
rtnStr += "[首頁(yè)] [上一頁(yè)] [下一頁(yè)] [尾頁(yè)] ";
}
else
{
rtnStr += "<div style=' float:right;'>";
if (IndexPage == 1)//首頁(yè)
{
replist.DataSource = DataSource.Take(PageSize);
rtnStr += "[首頁(yè)] [上一頁(yè)] <a href='?page=" + (IndexPage + 1) + PageParemart + "'>[下一頁(yè)]</a> <a href='?page=" + (pagecounts) + PageParemart + "'>[尾頁(yè)]</a> ";
}
else
{
replist.DataSource = DataSource.Skip((IndexPage - 1) * PageSize).Take(PageSize);
if (IndexPage == pagecounts)//末頁(yè)
{
rtnStr += "<a href='?page=1" + PageParemart + "'>[首頁(yè)]</a> <a href='?page=" + (IndexPage - 1) + PageParemart + "'>[上一頁(yè)]</a> [下一頁(yè)] [尾頁(yè)] ";
}
else
{
rtnStr += "<a href='?page=1" + PageParemart + "'>[首頁(yè)]</a> <a href='?page=" + (IndexPage - 1) + PageParemart + "'>[上一頁(yè)]</a> <a href='?page=" + (IndexPage + 1) + PageParemart + "'>[下一頁(yè)]</a> <a href='?page=" + (pagecounts) + PageParemart + "'>[尾頁(yè)]</a> ";
}
}
rtnStr += "</div></div>";
}
replist.DataBind();
}
return rtnStr;
}
頁(yè)面調(diào)用
代碼如下:
private int PageSize = 10;
private int IndexPage = 1;
private string PageParemart = "";
private void Bind()
{
strwhere = "1=1 " + strwhere;
str2 = "1=1 " + str2;
var a = from b in datas.fav_Awards_User select b;
Label2.Text = common.PageFen.ShowPage(replist, a, this.IndexPage, this.PageSize, this.PageParemart);
if (Label2.Text == "")
{
Label1.Visible = true;
}
}
聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com