如何访问LayoutTemplate
控件的ListView
中的控件?
我需要进入litControlTitle
并设置其Text
属性。
<asp:ListView ID="lv" runat="server">
<LayoutTemplate>
<asp:Literal ID="litControlTitle" runat="server" />
<asp:PlaceHolder ID="itemPlaceHolder" runat="server" />
</LayoutTemplate>
<ItemTemplate>
</ItemTemplate>
</asp:ListView>
有什么想法吗?也许通过
OnLayoutCreated
事件? 最佳答案
试试这个:
((Literal)lv.FindControl("litControlTitle")).Text = "Your text";