User1982844092 posted
I have a control named default.ascx that contains another user control like this:
<%@ Control Language="C#" ClassName="Default" %>
<%@ Register src="~/Controls/Request/SelectApplications.ascx" TagName="SelectAppliactions" TagPrefix="uc1" %>
<uc1:SelectAppliactions ID="SelectApplications1" runat="server" />
Runtime is not showing the contents of SelectApplications and the path is correct in the register as well as there is definitely mark-up in the SelectApplications.ascx that has been working fine in an .aspx prior.
I've never nested user controls so I don't know what you need to look out for if anything.