I have the following in my web.config to stop me having to add a register directive to every page on my site:
<pages>
<controls>
<add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI" />
</controls>
</pages>
When I add a Telerik control to a page, the designer adds the following to the control on the ASPX page
xmlns:telerik="telerik.web.ui". If I remove it, it still builds, however, if I do anything with the designer it comes back.
This means that I am getting warnings about an ambiguous reference, where it is finding the telerik prefix in both the web.config and the control.
Is there any way to stop this happening?
Thanks
Richard
<pages>
<controls>
<add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI" />
</controls>
</pages>
When I add a Telerik control to a page, the designer adds the following to the control on the ASPX page
xmlns:telerik="telerik.web.ui". If I remove it, it still builds, however, if I do anything with the designer it comes back.
This means that I am getting warnings about an ambiguous reference, where it is finding the telerik prefix in both the web.config and the control.
Is there any way to stop this happening?
Thanks
Richard