Just a shared tip, that may be handy to someone doing a search.
We had trouble getting the Rad controls to offer intellsense in the ASPX source code environment. Site built fine, all worked fine, just no intellisense.
We had installed the Telerik.Web.UI into the GAC and had the following entry in our web.config
which was our problem ... it needed to be specific (version, etc) to get intellisense:
If we've made a mistake with this observation, we'd welcome the comment.
Thanks.
We had trouble getting the Rad controls to offer intellsense in the ASPX source code environment. Site built fine, all worked fine, just no intellisense.
We had installed the Telerik.Web.UI into the GAC and had the following entry in our web.config
<system.web> |
<pages > |
<controls> |
<add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI" /> |
which was our problem ... it needed to be specific (version, etc) to get intellisense:
<system.web> |
<pages > |
<controls> |
<add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI, Version=2008.3.1314.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" /> |
If we've made a mistake with this observation, we'd welcome the comment.
Thanks.