I have the a ListView like this
<asp:ListView ID="ListView1" runat="server">
<EmptyDataTemplate>
<asp:Literal ID="Literal1" runat="server" text="some text"/>
</EmptyDataTemplate>
...
</asp:ListView>
on my Page_Load event I have the following code
Literal x = (Literal)ListView1.FindControl("Literal1");
x.Text = "other text";
but x returns null. I'd like to change the text of the Literal Control but I don't have no idea how to do it.