Microsoft statement is:
Thank you for the feedback. This seems like an oddity with the fact that the LinkButton control allows either direct text content via the Text property or in markup, or sub-controls via the Controls collection or markup. The workaround is to use a placeholder as the root content for the control and place the desired mixed content in there, e.g.
<asp:LinkButton runat="server"> <asp:PlaceHolder runat="server"> This is some text.</br> <asp:Label runat="server">This is a control</asp:Label> </asp:PlaceHolder>
</asp:LinkButton>