本文介绍了在ASP .NET中如何相互使用三个中继器?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经在里面添加了三个中继器,然后如何在子中继器中访问数据项父中继器..

i have added three repeater inside with each other and then how to access Data Item parent Repeater in Child Repeater..

推荐答案

<HeaderTemplate>
    <%# ((RepeaterItem)Container.Parent.Parent).DataItem %>
</HeaderTemplate>



这篇关于在ASP .NET中如何相互使用三个中继器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 19:24