gridview 繫結資料來源

2021-09-01 22:27:18 字數 599 閱讀 5603

本人剛剛學習asp.net+c# 整理一下關於 gridview的使用

if(!page.ispostback)

{                  this.panel1.visible = true;

this.gridview1.emptydatatext = "暫沒有資料";

this.gridview1.emptydatarowstyle.horizontalalign = horizontalalign.center;

this.gridview1.datasource = getinfomation();

this.gridview1.databind()

然後前台拖拽出來乙個gridview控制項就好了,

datasource 的繫結,可以參考下我寫的小例子,我比較小白。。。(在網頁純手打了,可能會有錯誤。僅供參考)

public datatable getinfomation()

string sql="select ***x from ***xx";

return sqlhelper.executedataset(constr, commandtype.text, sql).tables[0];

GridView手動繫結資料來源

在正規的開發中,不允許使用sqldatasource objectdatasource accessdatasource等資料來源控制項快速的開發web應用,因為這樣會增加伺服器的壓力,不滿足開發的基本要求。所以需要手動繫結資料來源,下面做了演示。如何給gridview控制項手動繫結資料來源。為了方...

asp Repeater繫結資料來源

page language c autoeventwireup true codebehind showrepeater.aspx.cs inherits binddata.connection.showrepeater using system using system.collections.g...

DataGridView繫結資料來源後限制列顯示

winfrom的datagridview繫結資料來源後,缺省會顯示所有資料屬性的列。msdn中微軟告訴我們可以用datagridview物件的autogeneratecolumns來控制是否建立所有屬性列。如果將datagridview物件的autogeneratecolumns值設為false,則...