//綁定欄位<%# Container.DataItemIndex + 1%> //實作自動編號<%# DataBinder.Eval(Container.DataItem, "") %> 通常使用的方法<%# DataBinder.Eval(Container.DataItem, ""/> //綁定欄位<%# Container.DataItemIndex + 1%> //實作自動編號<%# DataBinder.Eval(Container.DataItem, "") %> 通常使用的方法<%# DataBinder.Eval(Container.DataItem, "">
-------DataBinder所有用法------------------<%# Bind("Subject") %> //綁定字段
<%# Container.DataItemIndex + 1%> //實現自動編號
<%# DataBinder.Eval(Container.DataItem, "
") %>
通常使用的方法
<%# DataBinder.Eval(Container.DataItem, "ColumnName") %>
<%# DataBinder.Eval(Container.DataItem "ColumnName" , null) %>
<%# DataBinder.Eval(Container, "DataItem.ColumnName", null) %>
其他用法
#.% # ((DataRowView)Container.DataItem)["ColumnName"] %> <%# ((DataRowView)Container.DataItem).Row["ColumnName"] %> ##<% ( (DataRowView)Container.DataItem)["adtitle"] %>
<%# ((DataRowView)Container.DataItem)
%>
<%# ((DbDataRecord)Container.DataItem)Container.DataItem )[0] %>
<%# (((自訂類型)Container.DataItem)).屬性.ToString() %>//如果屬性為字串型別就不用ToString()了
DataBinder.Eval用法範例
<%# DataBinder.Eval(Container.DataItem, "IntegerValue", "{0:c}") %>
格式化字串參數是可選的。如果忽略參數,DataBinder.Eval 傳回物件類型的值,
//顯示二位小數
<%# DataBinder.Eval(Container.DataItem, "UnitPrice", "${0:F2 }") %>
//{0:G}代表顯示True或False
ImageUrl='<%# DataBinder.Eval(Container.DataItem, "Discontinued", "~/images/{0:G}.gif") %>' />
//轉換型別轉換類型
((string)DataBinder.Eval(Container, "DataItem.P_SHIP_TIME_SBM8")).Substring(4,4)
{0:d} 日期只顯示年月日
{0:yyyy-mm-dd } 依格式顯示年月日
{0:c} 貨幣樣式
<%#Container.DataItem("price","{0:¥#,##0.00}")%>
<%# DataBinder.Eval(Container.DataItem,"Company_Ureg_Date","{0:yyyy-M-d}")%>
##Specifier Type Format 12400)
c Currency {0:c} $1.42 -$12,400
d -$12,400 ##d FormatException -12400
e Scientific {0:e} 1.420000e+000 -1.240000e+004 ##f Fixed point {0:f} 1.42 -12400.00
g General Number with commas for thousands {0:n} 1.42 -12,400
r Round trippable { 0:r} 1.42 System.FormatException
x Hexadecimal {0:x4} System.FormatException {0:x4} System.FormatException } 依格式顯示年月日
樣式取決於 Web.config 中的設定
{0:c} 或 {0:£0,000.00} 貨幣樣式 英國貨幣樣式
#< ;system.web>
顯示為 £3,000.10
##{0:c} 或 string.Format("{0:C}", price); 中國貨幣樣式
#. #
##{0:c} 或 string.Format("{0:C}", price); 美國貨幣樣式
顯示為 $3,000.10
DataBinder.Eval(Container.DataItem," Name")和Container.DataItem("Name")有什麼不同?
DataBinder是System.Web裡面的一個靜態類,它提供了Eval方法用於簡化資料綁定表達式的編寫,但是它使用的方式是透過Reflection等開銷比較大的方法來達到易用性,因此其性能並不是最好的。而Container則根本不是任何一個靜態的物件或方法,它是ASP.NET頁面編譯器在資料綁定事件處理程序內部聲明的局部變量,其類型是可以進行資料綁定的控制項的資料容器類型(如在Repeater內部的資料綁定容器叫做RepeaterItem),在這些容器類別中基本上都有DataItem屬性,所以你可以寫Container.DataItem,這個屬性回傳的是你正在被綁定的資料來源中的那個資料項目。如果你的資料來源是DataTable,則這個資料項的類型實際上是DataRowView。
#
以上是解析DataBinder_Eval的用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!