分页的问题,在线等待。。。。。。。。。。

问题描述

我页面的首页,上页,下页,末页,点击不管用,帮忙看看。usingSystem;usingSystem.Collections;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Web;usingSystem.Web.SessionState;usingSystem.Web.UI;usingSystem.Web.UI.WebControls;usingSystem.Web.UI.HtmlControls;usingSystem.Data.OleDb;usingSystem.Text;usingSystem.IO;usingxinyun.classes.bases;namespacexinyun.aspx.maintain.mustread.parentmessage{///<summary>///guestbook_list的摘要说明。///</summary>publicclassparentmg:System.Web.UI.Page{protectedSystem.Web.UI.WebControls.DataGridGonGaoGrid;protectedSystem.Web.UI.WebControls.LinkButtonbtnLast;protectedSystem.Web.UI.WebControls.LinkButtonbtnNext;protectedSystem.Web.UI.WebControls.LinkButtonbtnPrev;protectedSystem.Web.UI.WebControls.LabellblCurrentIndex;protectedSystem.Web.UI.WebControls.LabellblPageCount;protectedSystem.Web.UI.WebControls.LabellblPosition;protectedSystem.Web.UI.WebControls.LabelLabel1;protectedSystem.Web.UI.WebControls.LinkButtonbtnqb;protectedSystem.Web.UI.WebControls.LinkButtonButton1;protectedSystem.Web.UI.WebControls.LinkButtonbtnwhf;protectedSystem.Web.UI.WebControls.LinkButtonbtnFirst;privateOleDbConnectioncn=newOleDbConnection();privatevoidPage_Load(objectsender,System.EventArgse){if(Session["userName"]==null){Response.Write("<scriptlanguage=javascript>alert(网页已超时,请重新登录!);</script>");Response.Redirect("../../Login.aspx");return;}setPosition();btnFirst.Text="首页";btnPrev.Text="上一页";btnNext.Text="下一页";btnLast.Text="末页";OpenDatabase();BinGonGaoGridrid();this.Label1.Visible=true;this.Label1.Text="全部留言";}#regionWeb窗体设计器生成的代码overrideprotectedvoidOnInit(EventArgse){////CODEGEN:该调用是ASP.NETWeb窗体设计器所必需的。//InitializeComponent();base.OnInit(e);}///<summary>///设计器支持所需的方法-不要使用代码编辑器修改///此方法的内容。///</summary>privatevoidInitializeComponent(){this.btnqb.Click+=newSystem.EventHandler(this.btnqb_Click);this.btnwhf.Click+=newSystem.EventHandler(this.btnwhf_Click);this.Button1.Click+=newSystem.EventHandler(this.Button1_Click);this.Load+=newSystem.EventHandler(this.Page_Load);}#endregionprivatevoidOpenDatabase(){cn.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;DataSource="+Server.MapPath("../../../../db/xinyun.mdb");cn.Open();}privatevoidShowStats(){lblCurrentIndex.Text="第"+(GonGaoGrid.CurrentPageIndex+1).ToString()+"页";lblPageCount.Text="共"+GonGaoGrid.PageCount.ToString()+"页";}publicvoidPagerButtonClick(objectsender,EventArgse){stringarg=((LinkButton)sender).CommandArgument.ToString();switch(arg){case"next":if(GonGaoGrid.CurrentPageIndex<(GonGaoGrid.PageCount-1)){GonGaoGrid.CurrentPageIndex+=1;}break;case"prev":if(GonGaoGrid.CurrentPageIndex>0){GonGaoGrid.CurrentPageIndex-=1;}break;case"last":GonGaoGrid.CurrentPageIndex=(GonGaoGrid.PageCount-1);break;default:GonGaoGrid.CurrentPageIndex=System.Convert.ToInt32(arg);break;}BinGonGaoGridrid();ShowStats();}publicvoidBinGonGaoGridrid(){OleDbConnectionmyConnection=cn;DataSetds=newDataSet();OleDbDataAdapteradapter=newOleDbDataAdapter("SELECTid,zuti,name,Addtime,"+"iif([IsReplyed]=true,'是',iif([IsReplyed]=false,'否'))asIsreplyed"+"FROMlybORDERBYAddtimeDESC",myConnection);//OleDbDataAdapteradapter=newOleDbDataAdapter("select(case[IsReplyed]when1then'是'else'否'end)fromlyb",myConnection);adapter.Fill(ds,"Document");GonGaoGrid.DataSource=ds.Tables["Document"].DefaultView;GonGaoGrid.DataBind();Buttonbtn;for(inti=0;i<GonGaoGrid.Items.Count;i++){btn=(Button)GonGaoGrid.Items[i].Cells[6].Controls[0];//删除btn.Attributes.Add("onclick","if(!confirm('是否已确认要删除?一旦删除了该记录,将不可恢复!')){returnfalse;}");btn=(Button)GonGaoGrid.Items[i].FindControl("btnModify");//修改btn.Attributes.Add("onclick","ret=window.showModalDialog('book_look.aspx?type=edit&id="+GonGaoGrid.Items[i].Cells[0].Text+"','','dialogWidth=700px;dialogHeight=455px;dialogLeft=60px;dialogTop=30px;status=no;help=no;resizable=yes');if(ret==null||ret=='false'){returnfalse;}");}ShowStats();}publicvoidGonGaoGrid_Page(objectsender,DataGridPageChangedEventArgse){intstartIndex;startIndex=GonGaoGrid.CurrentPageIndex*GonGaoGrid.PageSize;GonGaoGrid.CurrentPageIndex=e.NewPageIndex;BinGonGaoGridrid();ShowStats();}privatevoidsetPosition(){stringstrPostion="<divstyle="background-color:#99DDDD;height:12px;vertical-align:middle">你目前的位置为:后台维护-&gt;家长必读-&gt;家长留言<hrnoshade="noshade"size="1"/></div>";this.lblPosition.Text=strPostion;}}

解决方案

解决方案二:
没有逻辑性错误,是不是没有设定分页??
解决方案三:
我刚接触这个,不懂你说的设定分页什么的,你能不能详细点,最好举个例子,谢谢!

时间: 2024-10-01 23:56:43

分页的问题,在线等待。。。。。。。。。。的相关文章

DatGridView加载数据和分页!(在线==)

问题描述 namespace//省略{public//省略{intpageSize=0;intmaxRec=0;intpageCount=0;intcurrentPage=0;intrecNo=0;DataTabledtSource=newDataTable();DataSetds=null;publicForm_Manufactory(){InitializeComponent();}privatevoidgetFillDateset(){try{//每页显示数pageSize=20;//得到

cxf-CXF访问的性能问题,寻求方案,在线等待

问题描述 CXF访问的性能问题,寻求方案,在线等待 JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean();factory.setAddress(SERVICE_ADDRESS);factory.setServiceClass(DemoService.class);DemoService service = (DemoService) factory.create(); 测试:第一步,需要花费2秒,第4步需要花费7-10秒. 请问大

真机调试-真机测试出错误 在线等待大神

问题描述 真机测试出错误 在线等待大神 真机调试错误 No provisioning profiles found: No non–expired provisioning profiles were found. CodeSign error: code signing is required for product type 'Application' in SDK 'iOS 8.1' 怎么回事?公司分了一个开发小组成员给我证书什么的也都是按教程来的 但是就是一真机调试就是这个. 运行一下提

调用-C# 求助,在线等待。。。。。。。。。。。。。。。。。。。。。。。。。

问题描述 C# 求助,在线等待......................... C# form1登录界面登录后调用form3,报错"未处理objectDisposedException" 解决方案 你已经释放了form3,或者没有调用show创建窗口. 解决方案二: form3 f3=new form3(); f3.Show(); 页面调用没有错的话 就是其他地方的代码哪里出了点小错误 解决方案三: 你可以把你的代码截图或者贴上来看看,不然具体不好跟你找错误. 解决方案四: 是不是调

急用!在线等待!

问题描述 怎样用vb.net打印excel电子表格样式的表?急用!!!!谢谢各位高手指教!最好有源代码!或详细说明!不盛感激!!在线等待! 解决方案 解决方案二:您加我的QQ854468521

sql 结果集过滤-SQL 结果集过滤,求高手指点,在线等待

问题描述 SQL 结果集过滤,求高手指点,在线等待 id(列别名,不是有规律的数字) name time (n 个字段) 1 中国 3-14 1 null 3-14 1 null 3-14 2 null 3-15 3 美国 3-16 3 null 3-16 用distinct没效果 想过滤之后的效果是这样的 1 中国 3-14 2 null 3-15 3 美国 3-16 怎么用SQL语句实现 求高手指点,在线等待 解决方案 select distinct id,time from table a

mysql-MySQL中有 一张表格有性别属性,如何控制它的值只能是boy,或者girl.在线等待,球帮忙!!

问题描述 MySQL中有 一张表格有性别属性,如何控制它的值只能是boy,或者girl.在线等待,球帮忙!! MySQL中有 一张表格有性别属性,如何控制它的值只能是boy,或者girl.在线等待,球帮忙!! 解决方案 指定 enum("男","女"); 解决方案二: 好像是在你的建表的时候后面跟上unique. 解决方案三: 表上建触发器 CREATE TRIGGER upd_check BEFORE UPDATE ON 表名 FOR EACH ROW BEGIN

故障-PB编译错误, 求大哥大叔帮忙解决困惑, 3个错误 附上图, 在线等待热心人。。。

问题描述 PB编译错误, 求大哥大叔帮忙解决困惑, 3个错误 附上图, 在线等待热心人... declare rep_goods_sale_deal PROCEDURE for rep_goods_sale_deal @override =0,@deptcode =' ' , @gdsincode =' ' , @recorddate =:recorddate , @totalamount =0 , @totalinmoney =0 , @totalsalemoney =0 , @totaldi

求vistualStringTree控件链接数据库的实例,在线等待,谢谢

问题描述 求vistualStringTree控件链接数据库的实例,在线等待,谢谢 求vistualStringTree控件链接数据库的实例,下载的demo中没有数据库链接部分,即如何初始化一个树的部分,谢谢了

数据库导出-sql数据库导入导出问题,在线等待,感谢

问题描述 sql数据库导入导出问题,在线等待,感谢 我想实现把一个数据库中的内容导入到另一个数据库中,而且两个数据库的列名是不一样的.最好用C#代码解决.谢了