如何从代码隐藏中设置用户控件ListView
的属性?LayoutTemplate
<asp:ListView ...>
<LayoutTemplate>
<myprefix:MyControl id="myControl" ... />
</LayoutTemplate>
...
</asp:ListView>
我想做这个:
myControl.SomeProperty = somevalue;
请注意,我的控件不在 中ItemTemplate
,而是在 中LayoutTemplate
,因此并非所有项目都存在,它只存在一次。所以我应该能够访问它一次,而不是每个数据绑定项。