GridView控制項分頁顯示資料

2021-07-25 02:32:53 字數 958 閱讀 5502

using system;

using system.collections.generic;

using system.linq;

using system.web;

using system.web.ui;

using system.web.ui.webcontrols;

using system.configuration;

using system.data.oledb;

using system.data;

public partial class datafilm : system.web.ui.page

protected void gridview1_pageindexchanging(object sender, gridviewpageeventargs e)//分頁功能

protected void binddata()

string content = "select * from flim_info";  //編寫sql語句

oledbdataadapter oledba = new oledbdataadapter(content, connstr1);//建立資料介面卡

dataset ds = new dataset(); //建立資料集

oledba.fill(ds);  //填充資料集

gridview1.datasource = ds; //設定gridview1的資料來源為建立的資料集ds

gridview1.datakeynames = new string ;//將資料表中的主鍵字段放入gridview控制項的datakeynames屬性中,多個主鍵之間用都好分隔

gridview1.databind();  //資料繫結

if (connstr1.state == system.data.connectionstate.open)  //關閉資料庫

}

gridView分頁控制項

using system using system.collections.generic using system.linq using system.web using system.web.ui.webcontrols using system.drawing using system.tex...

GridView控制項實現分頁功能

初識asp.net中的控制項,還是折騰了一小會兒,就把我折騰的結果給大家看看 顯示資料時 開發中的乙個常見的功能,asp.net提供了很多任務具在網頁中顯示 gridview控制項就是最常見的乙個,下面說說如何實現這個控制項的分頁功能。首先我在資料庫中建好了一張表,裡面輸入了一些學生的資訊,資料表是...

分頁技術之GridView控制項

5455 5657 5859 view code gridview container.parent.parent pageindex 1獲取當前控制項顯示的頁面數 gridview container.parent.parent pagecount獲取當前控制項總的頁面數 causesvalida...