This is a migrated thread and some comments may be shown as answers.

"Rad*** is not a known element"

1 Answer 395 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
vtech
Top achievements
Rank 1
vtech asked on 11 Mar 2009, 06:44 AM
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
       
   <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.

1 Answer, 1 is accepted

Sort by
0
Veselin Vasilev
Telerik team
answered on 11 Mar 2009, 08:29 AM
Hi vtech,

This is correct. When the assembly is in the GAC, the full assembly name should be specified in the web.config

Kind regards,
Veselin Vasilev
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
Tags
General Discussions
Asked by
vtech
Top achievements
Rank 1
Answers by
Veselin Vasilev
Telerik team
Share this question
or