用Asp.net实现新闻分页
2024-07-10 12:57:33
供稿:网友
思想:方法是在后台添加新闻时,估计在应该分页的地方插入一个标记(我插入的是[page]),在前台显示时,我传入了一个参数page,表示要显示第几页,在显示页面,我根据标记[page]分别把新闻内容放入数组中,如果传入的参数page的值是1,我就取arr[0]的值,如果是第二个......
还有,我把分页的html代码是根据统计的[page]来决定是否显示的
baseinfo是我定义的基本信息类:
public class baseinfo
?{
??public string id,summary,content,picture;
??public datetime publictime;
??public stringbuilder pagefoot = new stringbuilder();
??public baseinfo()
??{?
???
??}
??//添加
??public int add()
??{
???...??
??}
??//更新
??public int update()
??{
???...
??}
??
??//初始化
??public void init()
??{
???...
??}
?}
在这个页面要传入两个参数page和id,第一次链接到这个页面传入的page值应该是1,而且一定是1,id是
新闻的id,如新闻id=1的连接应该是baseinfodetail.aspx?page=1&id=1
nextat是后一个[page]的位置,backat是前一个[page]标志的位置,pagefoot是一个html表格我加了
runat=server
代码如下:
baseinfodetail.aspx的部分代码如下:
baseinfo info = new baseinfo();??
????info.id = request.querystring["id"];?
????info.init();
????
//******************************************************************************************
**********
????//分页
????// i:计算标志“[page]”的个数的
????//
????//???????????????? --? 梦凡? 2004年8月14号19:32
????int nextat = -4,i=0,backat = 0;
????string[] tempcontent = new string[20] ;
????do
????{
?????nextat += 4;
?????nextat = info.content.indexof("[page]",nextat);??
????????????
?
?????if(nextat != -1)
?????{
??????i++;
??????tempcontent[i] = info.content.substring
(backat,math.abs(nextat-backat));
??????backat = nextat + 6;
?????}
????}while(nextat != -1);
??????
????int currentpage = convert.toint32(request.querystring
["page"]);
????if(i>0)
????{
?????info.content = tempcontent[currentpage];
?????this.pagefoot.visible = true;
????}
????else
?????this.pagefoot.visible = false;
?????
????info.pagefoot.append("共" +i.tostring()+"页 ");
????for(int j=1;j<=i;j++)
????{
?????info.pagefoot.append("[
href='baseinfodetail.aspx?page=" +j.tostring()+ "&id=" +info.id+ "'>" +j.tostring()+ "]
");
????}
????if(currentpage != i)
????{
?????currentpage += 1;
?????info.pagefoot.append("下一页 ");
????}
????
????
//******************************************************************************************
**********
网站运营seo文章大全提供全面的站长运营经验及seo技术!