主頁 > 知識(shí)庫 > 深入理解Asp.net中DataBinder.Eval的用法總結(jié)

深入理解Asp.net中DataBinder.Eval的用法總結(jié)

熱門標(biāo)簽:萊蕪?fù)夂綦婁N機(jī)器人價(jià)格 五常地圖標(biāo)注 戶外地圖標(biāo)注軟件手機(jī)哪個(gè)好用 智能電話營銷外呼系統(tǒng) 地圖標(biāo)注和認(rèn)領(lǐng) 凱立德導(dǎo)航官網(wǎng)地圖標(biāo)注 長春呼叫中心外呼系統(tǒng)哪家好 鄭州400電話辦理 聯(lián)通 電銷語音自動(dòng)機(jī)器人

%# Bind("Subject") %> //綁定字段
%# Container.DataItemIndex + 1%> //實(shí)現(xiàn)自動(dòng)編號(hào)
%# DataBinder.Eval(Container.DataItem, "[n]") %>
通常使用的方法(這三個(gè)性能最好)
%# 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)[n] %>
%# ((DbDataRecord)Container.DataItem)[0] %>
%# (((自定義類型)Container.DataItem)).屬性.ToString() %>//如果屬性為字符串類型就不用ToString()了
DataBinder.Eval用法范例
%# DataBinder.Eval(Container.DataItem, "IntegerValue", "{0:c}") %>
格式化字符串參數(shù)是可選的。如果忽略參數(shù),DataBinder.Eval 返回對(duì)象類型的值,

//顯示二位小數(shù)
%# DataBinder.Eval(Container.DataItem, "UnitPrice", "${0:F2}") %>

//{0:G}代表顯示True或False
ItemTemplate>
asp:Image Width="12" Height="12" Border="0" runat="server"
AlternateText='%# DataBinder.Eval(Container.DataItem, "Discontinued", "{0:G}") %>'
ImageUrl='%# DataBinder.Eval(Container.DataItem, "Discontinued", "~/images/{0:G}.gif") %>' />
/ItemTemplate>

//轉(zhuǎn)換類型
((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    Output (Passed Double 1.42)   Output (Passed Int -12400)
c   Currency         {0:c}      $1.42      -$12,400
d   Decimal          {0:d}     System.FormatException   -12400
e   Scientific       {0:e}     1.420000e+000     -1.240000e+004
f   Fixed point      {0:f}   1.42     -12400.00
g   General          {0:g}   1.42      -12400
n   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    cf90

{0:d} 日期只顯示年月日
{0:yyyy-mm-dd} 按格式顯示年月日

樣式取決于 Web.config 中的設(shè)置
{0:c}   或 {0:£0,000.00} 貨幣樣式   標(biāo)準(zhǔn)英國貨幣樣式
system.web>
globalization requestEncoding="utf-8" responseEncoding="utf-8" culture="en-US" uiCulture="en-US" />
/system.web>
顯示為 £3,000.10

{0:c}   或 string.Format("{0:C}", price); 中國貨幣樣式
system.web>
globalization requestEncoding="utf-8" responseEncoding="utf-8" culture="zh-cn" uiCulture="zh-cn" />
/system.web>
顯示為 ¥3,000.10

{0:c}   或 string.Format("{0:C}", price); 美國貨幣樣式
system.web>
globalization requestEncoding="utf-8" responseEncoding="utf-8" />
/system.web>
顯示為 $3,000.10

您可能感興趣的文章:
  • Android進(jìn)程間通信(IPC)機(jī)制Binder簡要介紹
  • 理解Android系統(tǒng)Binder機(jī)制
  • asp.net MVC利用自定義ModelBinder過濾關(guān)鍵字的方法(附demo源碼下載)
  • Android4.1中BinderService用法實(shí)例分析
  • 淺析DataBinder.Eval和Eval的區(qū)別
  • android IPC之binder通信機(jī)制
  • 使用jQuery向asp.net Mvc傳遞復(fù)雜json數(shù)據(jù)-ModelBinder篇
  • 一個(gè)用xslt樣式將xml解析為xhtml的類TransformBinder(兼容FF和IE7.0)
  • Android深入淺出之Binder機(jī)制

標(biāo)簽:西藏 湖州 西寧 衢州 紅河 福州 宣城 岳陽

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《深入理解Asp.net中DataBinder.Eval的用法總結(jié)》,本文關(guān)鍵詞  深入,理解,Asp.net,中,DataBinder.Eval,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《深入理解Asp.net中DataBinder.Eval的用法總結(jié)》相關(guān)的同類信息!
  • 本頁收集關(guān)于深入理解Asp.net中DataBinder.Eval的用法總結(jié)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章