I upgraded .net 3.5 from .net 1.1 version, after that i installed Telerik control 2009.1.527.20 for my new project.Then I added
<%
@ Register Assembly="Telerik.Web.UI, Version=2009.1.527.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4"
Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
to my new form to work out telerik control. But i am facing the follwing issues
1) I cannot drag and drop the telerik control from tool box
2) suppose i manually add control by code by griving tagprefix name like <telerik:RadGrid ID="Grid1" runat="server"></telerik:RadGrid>
After i try to run the project i am getting the following error eventually. I dont know what is the reason
"The type or namespace name 'Telerik' could not be found in the global namespace (are you missing an assembly reference?) "
I tried 'gacutil' command tool to register the dll and also added the following block of code in web,config
<
assemblies>
<
add assembly="Telerik.Web.UI, Version=2009.1.527.20, Culture=neutral, PublicKeyToken=121FAE78165BA3D4"/>
But no use...the error still comes...What step i need to be taken to avoid the foloowing issues.
-Thanks