DataItem,gridview,repeater數據控件數據綁定

Container.DataItem幾種方式.

在綁定數據時常常會用到這個句程序:<%# DataBinder.Eval(Container.DataItem,"xxxx")%>或者<%# DataBinder.Eval(Container,"DataItem.xxxx")%>html

今天又學到一種,並且微軟也說這種方法的效率要比以上兩種高。數據庫

<%# ((DataRowView)Container.DataItem)["xxxx"]%>數組

頗有用的,這樣能夠在前臺頁面作好多事情了。性能

還要記住要這樣用必需要在前臺頁面導入名稱空間System.Data,不然會生成錯誤信息。spa

<%@ Import namespace="System.Data" %>orm

這種用法其實和server

<%# ((UserInfoModel)Container.DataItem).Key%>htm

<%# ((DictionaryEntry)Container.DataItem).Key%>對象

是一個道理。blog

關鍵是Container這個東西,它比較神祕。它的名稱空間是System.ComponentModel。對於它我還須要進一步理解。
來源:http://www.cnblogs.com/huabei504/archive/2005/03/01/110618.html

 

ASP.NET-關於CONTAINER DATAITEM 與 EVAL方法介紹(轉帖)

Container是一個數據容器,表明集合類或者dataview中的一行,而Container。dataitem表明該行的數據;全部的container   被存放在是一個棧堆stack中,自動的將每個container壓入棧堆內,最後一行記錄先進棧,最後是第一行;(或者說棧頂是集合類的第一個container)

GridView的每一行都是一個類型爲GridViewRow的Container(容器)對象。GridViewRow有一個屬性叫DataItem,它是GridViewRow對象綁定到的基礎數據對象,通常來講它就是綁定到GridView的關係數據庫數據源的一行(DataRow)。

在上面的例子中,由於GridViewRow(即GridView的一行)經過原先的數據綁定已經綁定到了一個ItemInformation對象,因此Container.DataItem能夠轉換爲temInformation。
總之,Container是GridView的一行,而Container.DataItem是這一行所綁定的數據。

每一個DataItem表明集合類內的一個對象,或者dataview內的一行記錄(datarowview);

此外Eval(object,string)方法,是經過反射機制在object內尋找string的,因此對於性能有些許損耗。

Eval(container。dataitem,「name」):表示在當前的dataitem對象內尋找 name的值

在使用Repeater的時候,會使用Container.DataItem.其實DataItem就是一個Object,這個Object就是Repeater的DataSource中的一個元素。

若是 DataSourc是DataTable 那麼這個DataItem就是DataRow

若是DataSource是List<Article> 那麼這個DataItem就是Article。這裏Article是一個自定義的類。能夠先作類型轉換 而後調用Article的方法。比用DataBinder.Eval效率高一些,由於DataBinder.Eval須要使用反射。

使用數據綁定的範例:

綁定到簡單屬性:<%#UserName%>
          綁定到集合:<asp:ListBox id="ListBox1" datasource='<%# myArray%>' runat="server">
          綁定到表達式:<%#(class1.property1.ToString() + "," + class1.property2.ToString())%>
          綁定到方法返回值:<%# GetSafestring(str) %>
          綁定到Hashtable:<%# ((DictionaryEntry)Container.DataItem).Key%>
          綁定到ArrayList:<%#Container.DataItem %>

          若數組裏裏放的是對象則可能要進行必要的轉換後再綁定如:
          <%#((對象類型)Container.DataItem).屬性%>

          綁定到DataView,DataTable,DataSet:
          <%#((DataRowView)Container.DataItem)["字段名"]%>或
          <%#((DataRowView)Container.DataItem).Rows[0]["字段名"]%>
          要格式化則:
          <%#string.Format("格式",((DataRowView)Container.DataItem)["字段名"])%>
          <%#DataBinder.Eval(Container.DataItem,"字段名","格式")%>

          綁定到DataReader:
          <%#((IDataReader)Container.DataItem).字段名%>

來自: http://hi.baidu.com/jiangyangw3r/blog/item/d8d27b3100a23210eac4af76.html

相關文章
相關標籤/搜索