This is related to my earlier question, but I thought I'd simplify it and make a challenge out of it. Given the code below, can you change the value of "ChangeThisLabel" from the code behind?
<asp:ListView ID="OuterListView" runat="server">
<LayoutTemplate>
<asp:PlaceHolder ID="itemPlaceHolder" runat="server" />
</LayoutTemplate>
<ItemTemplate>
<%#Eval("outer_value")%> <br/>
<asp:ListView ID="InnerListView" runat="server" DataSource='<%#Eval("inner") %>'>
<LayoutTemplate>
<asp:Label ID="ChangeThisLabel" runat="server" />
<asp:PlaceHolder ID="itemPlaceHolder" runat="server" />
</LayoutTemplate>
<ItemTemplate>
<%#Eval("inner_value")%> <br/>
</ItemTemplate>
</asp:ListView>
</ItemTemplate>
</asp:ListView>
I would suggest trying it yourself before submitting an answer, as I got a lot of suggestions in my earlier post that work fine for a single ListView, but fall down when going up against the nested ListView.