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 ();
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两个参数分页。
Tag:移动WAP开发,移动WAP开发教程,wap网站开发,电脑知识学习 - 网页制作 - 移动WAP开发
上一篇:WAP协议研究笔记―彩信的传输
最新更新