Thursday 10 July 2014

SharePoint 2010 'Telerik.Web.UI' could not be loaded


Solution: Add Telerik.Web.UI.dll in
C:\inetpub\wwwroot\wss\VirtualDirectories\80\bin
Open web.config file and add below tag
<add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI" />
under <pages> <controls>
Final code will be:
 <pages> <controls><add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI" /></controls> </pages>