Hi, On my .aspx page, I have the following declaration to user my user control:
<%@ Register TagPrefix="uc" TagName="ProductCategoryMenu" Src="~/Resources/Common/Controls/productCategoryMenu.ascx" %>
<uc:ProductCategoryMenu ID="ProductCategoryMenu" runat="server" />
Whenever the .designer file autogenerates, it declares
protected global::System.Web.UI.UserControl ProductCategoryMenu;
instead of the actual type of my user control. Is there a way I can change that so I don't always have to open the .designer.cs file and correct it? Thanks!!