|
public string OutputByLine(string strContent)//通過設(shè)定的行數(shù)分頁(yè)
{
int pageSize = int.Parse(ConfigurationManager.AppSettings["pageSize"]);//每頁(yè)顯示行數(shù)從CONFIG文件中取出
string lineBreak = ConfigurationManager.AppSettings["lineBreak"];//換行符從CONFIG文件中取出
string lineBreakS = "<" + lineBreak + ">";
string lineBreakE = "</" +lineBreak+">";
strContent = strContent.Replace("/r/n", "");
string[] strLined = strContent.Split(new string[] {lineBreakS, lineBreakE }, StringSplitOptions.RemoveEmptyEntries);//以DIV為換行符
int pageCount = strLined.Length / pageSize;
int pageCountPlus = strLined.Length % pageSize == 0 ? 0 : 1;//非滿頁(yè)
pageCount = pageCount + pageCountPlus;//總頁(yè)數(shù)
int currentPage = 1;//當(dāng)前頁(yè)碼
string displayText = null;
if (Request.QueryString["pageIndex"]!=null) //獲取翻頁(yè)頁(yè)碼
{
currentPage = Convert.ToInt32(Request.QueryString["pageIndex"].ToString());
}
string pageInfo = "";//頁(yè)數(shù)信息
for (int i = 1; i < pageCount+1; i++)
{
if (i==currentPage)
{
pageInfo += " 第" + i + "頁(yè)";
if (pageCount>1)
{
pageInfo += " | ";
}
}
else
{
pageInfo += string.Format("<a href='newshow.ASPx?pageIndex={0}' title='翻到第{0}頁(yè)'>{0} | </a>",i);
}
}
labPageNumber.Text = pageInfo;
for (int i = (currentPage-1)*pageSize; i < currentPage*pageSize&&i<strLined.Length; i++)
{
displayText += "<div>" + strLined[i] + "</div>";
}
return displayText;
}
AspNet技術(shù):asp.net 長(zhǎng)文章通過設(shè)定的行數(shù)分頁(yè),轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。