必威体育Betway必威体育官网
当前位置:首页 > IT技术

DataBinder.Eval用法范例

时间:2019-05-30 06:40:00来源:IT技术作者:seo实验室小编阅读:94次「手机版」
 

databinder.eval

//一、databinder.eval的基本格式

//在绑定数据时经常会用到这个句程序:<%...# DataBinder.Eval(Container.DataItem,"xxxx")%>或者<%...# DataBinder.Eval(container,"DataItem.xxxx")%>

//今天又学到一种,而且微软也说这种方法的效率要比以上两种高。

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

//很有用的,这样可以在前台页面做好多事情了。

//还要记住要这样用必须要在前台页面导入名称空间System.Data,否则会生成错误信息。

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

//这种用法其实和<%...# ((DictionaryEntry)Container.DataItem).Key%>是一个道理。

Text='<%...# DataBinder.Eval(Container.DataItem, "字段") %>'

//这样的方法是最快的

Text='<%...# GetPrice() %>'

//也可以绑定方法,但方法要是public的

Text='<%...# "CarDetails.aspx?CarID=" + DataBinder.Eval(Container.DataItem, "CarID") %>'

//还可以连接多个字段

//关键是Container这个东西,它比较神秘。它的名称空间是System.componentModel。

 

//二、DataBinder.Eval实现判断选择

<asp:TemplateColumn HeaderText="性别">

<ItemTemplate>

<%...# DGFormatSex(Convert.ToString(DataBinder.Eval(Container.DataItem,"xb"))) %>

</ItemTemplate>

</asp:TemplateColumn>

//cs里定义DGFormatSex方法

protected string DGFormatSex(string xb)

{

if(xb == "1")

return "男";

else

return "女";

}

Asp.net框架提供了一个静态方法DataBinder.Eval,可以计算后期数据绑定表达式的值,并可以将结果任意格式化为字符串。DataBinder.Eval是很方便的,他排除了许多开发人员必须作的(通过强制改变值的类型来得到预期的数据类型)显式转换。尤其是在带有模板列表的数据绑定控件中,因为经常需要显式转换数据行和数据字段,所以它特别有用。

仔细看下面的代码,整数将被显示为货币型字符串。使用标准的asp.net数据绑定语法,为了得到数据字段integerValue,你必须首先显式转换数据行的类型,然后作为string.format方法的参数才能得到结果

<%# String.Format("{0:c}", ((DataRowView)Container.DataItem)["IntegerValue"]) %>

这样的语法实在错综复杂的难以记忆。比较而言,DataBinder.Eval 就很简单了。它带有三个参数:数据项的命名容器、数据字段名称和格式化字符串。在模板列表如DataList、DataGrid、或 repeater,命名容器总是Container.DataItem。 Page 是另一个可以被DataBinder.Eval使用的命名容器。

<%# DataBinder.Eval(Container.DataItem, "IntegerValue", "{0:c}") %>

格式化字符串参数是可选的。如果忽略参数,DataBinder.Eval 返回对象类型的值,就象下面的代码这样:

<%# (bool)DataBinder.Eval(Container.DataItem, "BoolValue") %>

很重要的一点需要注意:由于受后期绑定影响,DataBinder.Eval与标准的数据绑定语法相比,在执行效率上有明显的差别。因此有选择地使用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} 货币样式

读取数据时如何转换回车符<%# DataBinder.Eval(Container.DataItem, "User_content")%>

<%#   DataBinder.Eval(Container.DataItem,   "User_Content").ToString().Replace(" ","你要转换的符号")%>  

转换类型

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

-------------------------------------------------

一、DataBinder.Eval的基本格式 在绑定数据时经常会用到这个句程序:或者 今天又学到一种,而且微软也说这种方法的效率要比以上两种高。 很有用的,这样可以在前台页面做好多事情了。 还要记住要这样用必须要在前台页面导入名称空间System.Data,否则会生成错误信息。 这种用法其实和是一个道理。 Text='' 这样的方法是最快的 Text='' 也可以绑定方法,但方法要是public的 Text='' 还可以连接多个字段 关键是Container这个东西,它比较神秘。它的名称空间是System.ComponentModel。对于它我还需要进一步理解。 二、DataBinder.Eval实现判断选择 cs里定义DGFormatSex方法 protected string DGFormatSex(string xb) { if(xb == "1") return "男"; else return "女"; } DataBinder.Eval用法范例 DataBinder.Eval用法范例 //显示二位小数 // //{0:G}代表显示True或False // // // //转换类型 ((string)DataBinder.Eval(Container, "DataItem.P_SHIP_TIME_SBM8")).Substring(4,4) {0:d} 日期只显示年月日 {0:yyyy-mm-dd} 按格式显示年月日 {0:c} 货币样式

相关阅读

分享到:

栏目导航

推荐阅读

热门阅读