ASP.NET Eval 求值運算的一些用法

來源:互聯網
上載者:User
<%# Bind("Subject") %> //綁定欄位<%# Container.DataItemIndex + 1%> //實現自動編號<%# DataBinder.Eval(Container.DataItem, "[n]") %>通常使用的方法(這三個效能最好)<%# 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}") %>格式化字串參數是可選的。如果忽略參數,DataBinder.Eval 返回物件類型的值,//顯示二位小數<%# 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>//轉換類型((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 中的設定{0:c}   或 {0:£0,000.00} 貨幣樣式   標準英國貨幣樣式<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
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.