ASP.NET用于存储过程分页 的通用用户控件应该怎么做?
如题 存储过程参数:@pageNumint,@nowPageint,@countoutput将@count值传给用户控件计算分页怎么写?写出来不成功主要是当点击...
如题 存储过程参数:@pageNum int ,@nowPage int,@count output将@count值传给用户控件 计算分页 怎么写? 写出来不成功 主要是当点击换页的时候 是先对宿主页执行load事件 再执行asax.cs 导致页面不同步 protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { mypage1.NowPage = 1; mypage1.PageNum = 5; } mypage1.Count = bind(mypage1.PageNum,mypage1.NowPage); } protected int bind(int a,int b) { DataClass.CompanyJobs cc=new DataClass.CompanyJobs(); Model.OutPut output=new Model.OutPut(); Model.CompanyJobs cj=new Model.CompanyJobs(); this.cheshi.DataSource = cc.GetCompanyJobs(a,b, cj, ref output); this.cheshi.DataBind(); return output.count; }
展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询