问题描述
自建access数据库,然后创建一表,表内列数行数不限,要求实用datagrid将表内数据显示在页面5内,实现分页和排序功能,能按某一列排序即可
解决方案
解决方案二:
楼主的意思是要完整的代码?这些都是很基础的东西,楼主找本书看看吧
解决方案三:
找一个免费分页空间即可,如:AspNetPager;排序用SQL语句实现,绑定datagrid即可。AspNetPager1.RecordCount=(int)Socut.Data.ExecuteScalar("SELECTCOUNT(*)FROMKuanwhereMinChenlike'"+QuanXian+"'orKai="+Convert.ToBoolean(KongZhi)+"");DataSetRiJi=Socut.Data.ExecuteDataSet("SELECT*FROMKuanwhereMinChenlike'"+QuanXian+"'orKai="+Convert.ToBoolean(KongZhi)+"orderbyiddesc",AspNetPager1.PageSize*(AspNetPager1.CurrentPageIndex-1),AspNetPager1.PageSize);DataList4.DataSource=RiJi;DataList4.DataBind();
时间: 2025-01-26 18:21:58