博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ASP.NET 数据绑定操作
阅读量:5094 次
发布时间:2019-06-13

本文共 1910 字,大约阅读时间需要 6 分钟。

转载

灵活的运用数据绑定操作

        绑定到简单属性:<%#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,"字段名","格式")%>

        绑定到DataReader:

        <%#((IDataReader)Container.DataItem).字段名%>

        当然为了方便一般使用最多的就是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。

          初学.NET,现在在看DataGrid控件,在ItemTemplate显示数据时,

          DataBinder.Eval(Container.DataItem,"Name")和Container.DataItem("Name")有什么区别?DataBinder是
System.Web里面的一个静态类,它提供了Eval方法用于简化数据绑定表达式的编写,但是它使用的方式是通过Reflection等开销比
较大的方法来达到易用性,因此其性能并不是最好的。而Container则根本不是任何一个静态的对象或方法,它是ASP.NET页面编译
器在数据绑定事件处理程序内部声明的局部变量,其类型是可以进行数据绑定的控件的数据容器类型(如在Repeater内部的数据绑定
容器叫RepeaterItem),在这些容器类中基本都有DataItem属性,因此你可以写Container.DataItem,这个属性返回的是你正在
被绑定的数据源中的那个数据项。如果你的数据源是DataTable,则这个数据项的类型实际是DataRowView。

转载于:https://www.cnblogs.com/bfy-19/archive/2012/07/04/2576385.html

你可能感兴趣的文章
poj2752 Seek the Name, Seek the Fame
查看>>
软件开发和软件测试,我该如何选择?(蜗牛学院)
查看>>
基本封装方法
查看>>
生活大爆炸之何为光速
查看>>
[Typescript] Specify Exact Values with TypeScript’s Literal Types
查看>>
Illustrated C#学习笔记(一)
查看>>
理解oracle中连接和会话
查看>>
Scrapy实战篇(三)之爬取豆瓣电影短评
查看>>
HDU 5510 Bazinga KMP
查看>>
[13年迁移]Firefox下margin-top问题
查看>>
Zookeeper常用命令 (转)
查看>>
Enterprise Library - Data Access Application Block 6.0.1304
查看>>
重构代码 —— 函数即变量(Replace temp with Query)
查看>>
Bootstrap栅格学习
查看>>
程序员的数学
查看>>
聚合与组合
查看>>
洛谷 P2089 烤鸡【DFS递归/10重枚举】
查看>>
Linux基本操作
查看>>
osg ifc ifccolumn
查看>>
C++ STL partial_sort
查看>>