靈活的運用數據綁定操做
綁定到簡單屬性:<%#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,"字段名","格式")%>spa
綁定到DataReader:
<%#((IDataReader)Container.DataItem).字段名%>orm
固然爲了方便通常使用最多的就是DataBinder類的Eval方法了.不過這樣對於同時要綁定大量的數據效率要低一些server
今天又學到一種,並且微軟也說這種方法的效率要比以上兩種高。對象
<%# ((DataRowView)Container.DataItem)["xxxx"]%>索引
頗有用的,這樣能夠在前臺頁面作好多事情了。事件
還要記住要這樣用必需要在前臺頁面導入名稱空間System.Data,不然會生成錯誤信息。編譯器
<%@ Import namespace="System.Data" %>string
這種用法其實和<%# ((DictionaryEntry)Container.DataItem).Key%>是一個道理。
綁定到DataSet、DataTable時:
<%#((System.Data.DataRowView)Container.DataItem)["字段名"]%>
<%#((System.Data.DataRowView)Container.DataItem)[索引]%>
綁定到DataReader時:
<%#((System.Data.Common.DbDataRecord)Container.DataItem)[索引]%>
<%#((System.Data.Common.DbDataRecord)Container.DataItem)["字段名"]%>
DataBinder.Eval(Container.DataItem,"Name")和Container.DataItem("Name")有什麼區別?
DataBinder是System.Web裏面的一個靜態類,它提供了Eval方法用於簡化數據綁定表達式的編寫,可是它使用的方式是經過Reflection等開銷比較大的方法來達到易用性,所以其性能並非最好的。而Container則根本不是任何一個靜態的對象或方法,它是ASP.NET頁面編譯器在數據綁定事件處理程序內部聲明的局部變量,其類型是能夠進行數據綁定的控件的數據容器類型(如在Repeater內部的數據綁定容器叫RepeaterItem),在這些容器類中基本都有DataItem屬性,所以你能夠寫Container.DataItem,這個屬性返回的是你正在被綁定的數據源中的那個數據項。若是你的數據源是DataTable,則這個數據項的類型實際是DataRowView。