当前位置:学会吧培训频道电脑知识学习网页制作移动WAP开发Wap页面使用asp.net中移动控件List分页» 正文

Wap页面使用asp.net中移动控件List分页

[08-08 00:46:17]   来源:http://www.xuehuiba.com  移动WAP开发   阅读:8271
概要: bookid desc) order by bookid asc"; DataSet myds = mydb.readTable("szhotline"); for (int i=0; i ...{ string bkname = myds.Tables["szhotline"].Rows["bookname"].ToString().Trim(); string bkurl = "szhotdet.aspx?bookid=" + myds.Tables["szhotline"].Rows["bookid"].ToString().Trim(); arr.Add(new Navigation(bkna
Wap页面使用asp.net中移动控件List分页,标签:移动WAP开发教程,wap网站开发,http://www.xuehuiba.com
            bookid desc) order by bookid asc";
            DataSet myds = mydb.readTable("szhotline");
            for (int i=0; i ...{
            string bkname =
            myds.Tables["szhotline"].Rows["bookname"].ToString().Trim();
            string bkurl = "szhotdet.aspx?bookid=" +
            myds.Tables["szhotline"].Rows["bookid"].ToString().Trim();
            arr.Add(new Navigation(bkname, bkurl));
            }
            List1.DataSource = arr;
            List1.ItemsAsLinks = true;
            List1.DataBind ();

            ActiveForm = list;
            说明:其中dbAccess是自定义的操作数据库的类,由于数据库使用的是Access。采用的分页采用了select top n *
            from (select * m from table order by id desc) order by id
            desc的方式,调整m,n两个参数分页。

上一页  [1] [2] 


Tag:移动WAP开发移动WAP开发教程,wap网站开发电脑知识学习 - 网页制作 - 移动WAP开发
Copyright 学会吧 All Right Reserved.
在线学习社区!--学会吧
1 2 3 4 5 6 7 7 8 9 10 11 12 13