We have the dll installed in the GAC, and the following line in our Machine.config
We have the following line in our application web.config:
<controls>
We have the following line at the top of the .aspx page
We do not have intellisense in our aspx page. The project will build and work, but no intellisense.
If we change the register tag at the top of the aspx page to the following:
@ Register tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI, Version=2010.2.713.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4"
it will begin working. However, we can not add this line to all of our aspx pages because when we upgrade to a new version we would have to update all of our pages or else we get an ambiguity error.
<add assembly="Telerik.Web.UI, Version=2010.2.713.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" />
We have the following line in our application web.config:
<controls>
<add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI" /></controls>
We have the following line at the top of the .aspx page
<%@ Register tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI" %>
We do not have intellisense in our aspx page. The project will build and work, but no intellisense.
If we change the register tag at the top of the aspx page to the following:
@ Register tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI, Version=2010.2.713.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4"
it will begin working. However, we can not add this line to all of our aspx pages because when we upgrade to a new version we would have to update all of our pages or else we get an ambiguity error.