Hi!
This example you provided:
<asp:Literal runat="server" ID="litLabel123" Text='<%# GetLabel123() %>'></asp:Literal>
Will not work, as you're calling a method with a data-binding expression. <%#. I think what you're looking for is:
<asp:Literal runat="server" ID="litLabel123" Text='<%= GetLabel123() %>'></asp:Literal>
Vidar