It looks like both TagPrefix and TagName are both required. I'm wondering what the correct usage of each element would be? The code I've got below doesn't look right, as I repeat the name of the control twice...
<%@ Register TagPrefix="ucCustomerSearch" TagName="ucCustomerSearch" Src="~/UserControls/IndividualSearch.ascx"%>
<%@ Register TagPrefix="ucCustomerList" TagName="ucCustomerSearch" Src="~/UserControls/CustomerList.ascx"%>
<asp:Content ContentPlaceHolderid="PlaceHolderMain" runat="server">
<ucCustomerSearch:ucCustomerSearch Title="Search" runat="server" />
<ucCustomerList:ucCustomerList Title="Customer List" runat="server" />
</asp:Content>