Question : namespace question

The type or namespace name 'RadPanelbar' does not exist in the namespace 'Telerik.WebControls' (are you missing an assembly reference?)

I have this on cs page
using Telerik.WebControls;
 it is complaining on designer.cs page
protected global::Telerik.WebControls.RadPanelbar RadPanelbar1;  there is where it is bold, complaining..

I do have this on aspx page too.. what is I am missing I dont understand...
<%@ Register Assembly="RadPanelbar.Net2, Version=4.2.2.0, Culture=neutral, PublicKeyToken=e0d16f6f4c7e05de"
    Namespace="Telerik.WebControls" TagPrefix="radP" %>    

Answer : namespace question

On the Telkirk sample they have this in the aspx page:

<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>

with the control defined with the tag:

<telerik:RadPanelBar ...

and the following using statement in the C# code-behind file:

using Telerik.Web.UI;

Check out the sample here, maybe it'll help if what I just said didn't fix it.


http://demos.telerik.com/aspnet-ajax/panelbar/examples/functionality/firstlook/defaultcs.aspx

-w00te

Random Solutions  
 
programming4us programming4us