国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > .NET > 正文

repeater分頁 內容顯示

2024-07-10 13:14:04
字體:
來源:轉載
供稿:網友
using System; 
using System.Collections; 
using System.ComponentModel; 
using System.Data; 
using System.Drawing; 
using System.Web; 
using System.Web.SessionState; 
using System.Web.UI; 
using System.Web.UI.WebControls; 
using System.Web.UI.HtmlControls; 
using System.Data.OleDb; 

namespace note 

/// <summary> 
/// _default 的摘要說明。 
/// </summary> 
public class _default : System.Web.UI.Page 

protected System.Web.UI.WebControls.Repeater rpt_sword_list; 
protected System.Web.UI.WebControls.Label lbl_count; 
protected System.Web.UI.WebControls.Label lbl_current_page; 
protected System.Web.UI.WebControls.Label lbl_total_page; 
protected System.Web.UI.WebControls.LinkButton lb_frist; 
protected System.Web.UI.WebControls.LinkButton lb_p; 
protected System.Web.UI.WebControls.LinkButton lb_n; 
protected System.Web.UI.WebControls.LinkButton lb_last; 

private void Page_Load(object sender, System.EventArgs e) 

// 在此處放置用戶代碼以初始化頁面 
if(!this.IsPostBack) 

this.DB_Bind(); 



private void DB_Bind() 

int ipageindex = Convert.ToInt32(this.lbl_current_page.Text); 
OleDbConnection conn = dbconn.CreateConn(); 
OleDbCommand cmd = new OleDbCommand("select * from a where flag=true order by cdate desc",conn); 
OleDbDataAdapter oda = new OleDbDataAdapter(); 
oda.SelectCommand = cmd; 
DataSet ds = new DataSet(); 
oda.Fill(ds,"sword_list"); 
PagedDataSource pds = new PagedDataSource(); 
pds.DataSource = ds.Tables["sword_list"].DefaultView; 
pds.AllowPaging = true; 
pds.PageSize = 5; 
pds.CurrentPageIndex = ipageindex - 1; 
this.lbl_total_page.Text = pds.PageCount.ToString(); 
this.lbl_count.Text = pds.Count.ToString(); 
this.lb_frist.Enabled = true; 
this.lb_p.Enabled = true; 
this.lb_n.Enabled = true; 
this.lb_last.Enabled = true; 
if(this.lbl_current_page.Text=="1") 

this.lb_frist.Enabled = false; 
this.lb_p.Enabled = false; 

if(this.lbl_current_page.Text==pds.PageCount.ToString()) 

this.lb_n.Enabled = false; 
this.lb_last.Enabled = false; 

this.rpt_sword_list.DataSource = pds; 
this.rpt_sword_list.DataBind(); 
conn.Close(); 


#region Web 窗體設計器生成的代碼 
override protected void OnInit(EventArgs e) 

// 
// CODEGEN: 該調用是 ASP.NET Web 窗體設計器所必需的。 
// 
InitializeComponent(); 
base.OnInit(e); 


/// <summary> 
/// 設計器支持所需的方法 - 不要使用代碼編輯器修改 
/// 此方法的內容。 
/// </summary> 
private void InitializeComponent() 

this.lb_frist.Click += new System.EventHandler(this.lb_frist_Click); 
this.lb_p.Click += new System.EventHandler(this.lb_p_Click); 
this.lb_n.Click += new System.EventHandler(this.lb_n_Click); 
this.lb_last.Click += new System.EventHandler(this.lb_last_Click); 
this.Load += new System.EventHandler(this.Page_Load); 


#endregion 

private void lb_frist_Click(object sender, System.EventArgs e) 

this.lbl_current_page.Text = "1"; 
this.DB_Bind(); 


private void lb_p_Click(object sender, System.EventArgs e) 

this.lbl_current_page.Text = Convert.ToString(Convert.ToInt32(this.lbl_current_page.Text)-1); 
this.DB_Bind(); 


private void lb_n_Click(object sender, System.EventArgs e) 

this.lbl_current_page.Text = Convert.ToString(Convert.ToInt32(this.lbl_current_page.Text)+1); 
this.DB_Bind(); 


private void lb_last_Click(object sender, System.EventArgs e) 

this.lbl_current_page.Text = this.lbl_total_page.Text; 
this.DB_Bind(); 


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 正宁县| 库尔勒市| 靖边县| 建德市| 佛坪县| 奎屯市| 天峻县| 武功县| 高邮市| 得荣县| 合水县| 随州市| 钟山县| 兴山县| 卓资县| 同德县| 潼南县| 和龙市| 靖宇县| 微博| 金门县| 马尔康县| 乌鲁木齐市| 化州市| 纳雍县| 蓝田县| 台中市| 镇宁| 嘉禾县| 营山县| 泰和县| 尉氏县| 凌海市| 林甸县| 宁城县| 潢川县| 大竹县| 潞西市| 潞西市| 江城| 太仓市|