vote up 3 vote down star
1

How do I access a Control in the LayoutTemplate of a ListView control?

I need to get to litControlTitle and set it's Text attribute.

<asp:ListView ID="lv" runat="server">
  <LayoutTemplate>
    <asp:Literal ID="litControlTitle" runat="server" />
    <asp:PlaceHolder ID="itemPlaceHolder" runat="server" />
  </LayoutTemplate>
  <ItemTemplate>
  </ItemTemplate>
</asp:ListView>

Any thoughts? Perhaps via the OnLayoutCreated event?

flag

2 Answers

vote up 4 vote down check

Try this:

((Literal)lv.FindControl("litControlTitle")).Text = "Your text";
link|flag
I tried that initially, but that didn't work. Then I came here. Thanks though! – craigmoliver Jan 11 '09 at 22:57
very strange... I place this code inside the callback of OnLayoutCreated, and when I bind the ListView it works fine... – tanathos Jan 11 '09 at 23:08
oh, well I didn't put it in that event, trying now – craigmoliver Jan 11 '09 at 23:11
that worked, thanks! – craigmoliver Jan 11 '09 at 23:26
vote up 1 vote down

I tried tanathos' answer:

((Literal)lv.FindControl("litControlTitle")).Text = "Your text";

inside OnLayoutCreated, and it worked for me. Thanks!

Note that using OnDataBinding attribute in your control will NOT work if it is inside the LayoutTemplate part of ListView.

( I just don't have enough reputation to reply to the thread nor to vote up, so here.)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.