下面是我如何从我的对象中提取一个字段:
但是,如果一个字段在一个子类(Customer.ContactInfo.Name)中,我如何拉取它呢?
发布于 2009-04-07 06:51:59
如果您知道DataItem是某种类型(假设您知道它是一种CustomerInfo类型),您可以这样做:
<%# ((CustomerInfo) Container.DataItem).ContactInfo.Name %>
额外的好处是,它比使用DataBinder.Eval更快,因为您避免了反射的所有开销。
发布于 2009-04-07 06:52:32
试试..。
<%#((Customer)Container.DataItem).ContactInfo.Name%>
发布于 2009-04-07 06:52:47
如果中继器绑定到Customer对象的集合,则从联系信息中获取姓名:
https://stackoverflow.com/questions/726139
复制