Hi,
I have a custom user control called ErrorNotificationBox. To place that on my page I do the old...
<%@ Register Src="~/PathTo/ErrorNotificationBox.ascx" TagName="ErrorNotificationBox" TagPrefix="uc" %>
<uc:ErrorNotificationBox Runat="server" id="myEnb" Caption="My Test Caption" />
Is it possible to extend HtmlHelper to include my user control? I.e...
<%= Html.ErrorNotificationBox("My Test Caption")%>
Many thanks for any help.
ETFairfax