DataGrid與SQL Server 2000資料繫結

來源:互聯網
上載者:User
datagrid|server|資料 DataGrid與SQL Server 2000資料繫結

WebForm頁面添加一個DataGrid控制項DataGrid1,DataGrid控制項與SQL Server手工綁定只須滑鼠點幾下就搞定了,這裡是代碼綁定.
首先在命名空間中添加SqlClient命名空間.
using System.Data.SqlClient;
然後在頁面載入事件中建立資料連線con,
SqlConnection con=new SqlConnection();
con.ConnectionString="server=(local);database=YourDataBase;Trusted_Connection=yes";
開啟資料連線,
con.Open();
建立一個資料命令com,
SqlCommand com=new SqlCommand();
com.CommandText="select * from YourTable";
com.Connection=con;
這就可以開始資料繫結了,方式很多.最簡單的直接使用資料命令的ExecuteReader方法.資料繫結就是設定控制項的DataSource屬性.
DataGrid1.DataSource=com.ExecuteReader();
還可以使用資料閱讀器SqlDataReader(不能使用他的建構函式),代碼如下:
SqlDataReader dr=com.ExecuteReader();
DataGrid1.DataSource=dr;
當然還可以使用ADO.NET的核心資料集和資料配接器;
SqlDataAdapter ada=new SqlDataAdapter(com.CommandText,con);
DataSet set1=new DataSet();
ada.Fill(set1);
DataGrid1.DataSource=set1;
最後計算資料繫結運算式,
DataGrid1.DataBind();



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.