亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

asp.net 分頁(yè)鏈接方法

 更新時(shí)間:2010年03月27日 14:51:30   作者:  
asp.net 分頁(yè)鏈接方法,需要的朋友可以參考下。
復(fù)制代碼 代碼如下:

/// <summary>
/// 分頁(yè)鏈接
/// </summary>
/// <param name="pageSize"></param>
/// <param name="recordCount"></param>
/// <param name="currentPage"></param>
/// <param name="prev">當(dāng)前頁(yè)前面顯示的數(shù)量</param>
/// <param name="next">當(dāng)前頁(yè)后面顯示的數(shù)量</param>
/// <returns></returns>
public string PageLink(int pageSize, int recordCount, int currentPage, int prev, int next)
{
int pageCount = recordCount % pageSize == 0 ? (recordCount / pageSize) : ((int)Math.Ceiling((double)recordCount / pageSize));
StringBuilder sb = new StringBuilder();
if (currentPage > 1 && recordCount > 1)
{
sb.Append("<a href=\"?page=");
sb.Append((currentPage - 1).ToString());
sb.Append("\">前一頁(yè)</a>&nbsp;&nbsp;");
}
if (currentPage > prev + 1)
sb.Append("<a href=\"?page=1\">1</a>&nbsp;...&nbsp;");
if (currentPage < prev)
next = next + prev - currentPage + 1;
if (next > pageCount - currentPage)
prev = prev + next - (pageCount - currentPage);
for (int i = 1; i <= pageCount; i++)
{
if (i == currentPage)
{
sb.Append("<a href=\"?page=" + i + "\" class=\"current\" ><font color=\"red\">" + i + "</font></a>&nbsp;&nbsp;");
}
else
{
if (i > (currentPage - prev - 1) && i < (currentPage + next + 1))
{
sb.Append("<a href=\"?page=" + i + "\">" + i + "</a>&nbsp;&nbsp;");
}
}
}
if (currentPage < pageCount - next)
sb.Append("...&nbsp;<a href=\"?page=" + pageCount.ToString() + "\">" + pageCount.ToString() + "</a>");
if (currentPage < pageCount)
sb.Append("&nbsp;&nbsp;<a href=\"?page=" + (currentPage + 1).ToString() + "\">后一頁(yè)</a>");
return sb.ToString();
}

相關(guān)文章

最新評(píng)論