1. 程式人生 > >ASP.NET-GridView資料繫結的幾種方法

ASP.NET-GridView資料繫結的幾種方法

前提:頁面需要顯示多個表中的欄位,幾個表之間通過欄位保持聯絡

方法一:直接進行級聯查詢,並將結果集通過SqlDataAdapter填充DataSet,之後將DataTable的DataView繫結到GridView的資料來源,:

//連線資料庫,並獲得返回結果;

public dataset GetResult(string str1)

{

String str=“資料庫連線字串”;

string str1=“級聯查詢語句”

SqlConneciton sconnection = new SqlConnection(str);

SqlCommand scommand = new scommand();

scommand。connection = sconnection;

scommand。textcommand = str1;

sqlDataAdapter adapter = new sqlDataAdapter();

adapter。 selectcommand = scommand;

DataSet ds = new DataSet();

adapter。fill(ds);

return ds;

}

頁面層.CS程式碼Fragment:

protected void Page_Load()

{

this.GridView1.datasource = ds.tables[0].defaultView;

this.GridView1.databind();

}

頁面層。aspx檔案程式碼Fragment1:將dataview內的所有欄位,按照dataview的次序全部繫結到頁面。

<asp:GridView id="GirdView1"></asp:GridView>

----------------------------------------------------------------

頁面層1。aspx檔案程式碼Fragment2:只繫結部分欄位,並更換dataview的順序規則:比如在dataview內name列顯示在第三位,id顯示在第二位;而在頁面中要求不顯示id列,而只顯示name列,並排列在第二位:

<asp:GridView id=“GridView1”>

<asp:templateField>

   <itemTemplate>

       <%# ((datarowview)container。dataitem)[ "name" ]。toString() %>

    </ItemTemplate>

</asp:templateField>

<asp:templateField>

   <itemTemplate>

          <%# databinder.Eval(container。Dataitem,"name") %>

   </itemTemplate>

</asp:templateField>

<asp:templateField>

   <itemTemplate>

          <%# databinder.Eval(container,"Dataitem。name") %>

   </itemTemplate>

</asp:templateField>

</asp:GridView>

------------------------------------------------------------------------------------------------------------------------------

方法二:先取出A張表內所需要顯示的記錄,逐一賦值到n個info物件內,將所有的info物件儲存在一個集合類內,(例如:List<>,dictionary,collection,arraylist,hashtable,注意這些類都是非執行緒安全的),之後將此集合類繫結到GirdView內。

但是一個GirdView只能繫結一個集合類,由於缺少其他表內的欄位,我們必須通過A表內的ID,查詢B表內的name。所以我們需要在頁面層的CS檔案,bll層,以及Dal層加入查詢name的方法:

由於Asp。net可以繫結方法,屬性,控制元件屬性,等等,所以這種做法是行得通的:

<asp:GridView id=“GridView1”>

<asp:templateField>

   <itemTemplate>

       <%# GetName(((XXXinfo)container。dataitem)。id 。tostring())%>

    </ItemTemplate>

</asp:templateField>

<asp:templateField>

   <itemTemplate>

          <%# GetName(databinder.Eval(container。Dataitem,"name")) %>

   </itemTemplate>

</asp:templateField>

<asp:templateField>

   <itemTemplate>

          <%#   GetName(databinder.Eval(container,"Dataitem。name") ) %>

   </itemTemplate>

</asp:templateField>

<asp:templateField>

   <itemTemplate>

          <%#   GetName(databinder.Eval(“name”) ) %>

   </itemTemplate>

</asp:templateField>

</asp:GridView>

//注:GetName方法被寫在頁面的。cs檔案內,方法為空方法,return bll的GetName方法,之後再Return Dal的GetName方法。

------------------------------------------------------------------------------------------------------------------------------

總結:第二種方法的效能很差,因為我需要訪問兩次資料庫,而且與方法一比較會多出很多方法。