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

Could not load assembly

1 Answer 746 Views
Upload (Obsolete)
This is a migrated thread and some comments may be shown as answers.
Manish Arora
Top achievements
Rank 1
Manish Arora asked on 04 Aug 2008, 07:21 AM
I have registered RadProgressArea and RadProgressManager in the web.config file.
as below:

<system.web>
               <httpModules>
            <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule,
Telerik.Web.UI, Version=2007.3.0.0, Culture=neutral, PublicKeyToken=e8ab424810b6b9b5 " />
        </httpModules>
        <httpHandlers>
            <add verb="*" path="Telerik.RadUploadProgressHandler.ashx"
type="Telerik.Web.UI.RadUploadProgressHandler,
Telerik.Web.UI, Version =2007.3.0.0, Culture=neutral, PublicKeyToken =e8ab424810b6b9b5 " />
        </httpHandlers>
</system.web>

I also added the RadUpload.Net2.dll and Telerik.QuickStart.dll which i downloaded from hotfix, to my project as a reference. When i run the application using MS visual studio 2005, i got the below error:

Could not load file or assembly 'Telerik.Web.UI' or one of its dependencies. The system cannot find the file specified.

Please help on this, Thanks

1 Answer, 1 is accepted

Sort by
0
Veselin Vasilev
Telerik team
answered on 04 Aug 2008, 03:32 PM
Hello Manish Arora,

I've noticed that you have downloaded the 2008.1.619 version of RadControls for ASP.NET AJAX

This means that your web.config should look like:

<add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule, 
Telerik.Web.UI, Version=2008.1.619.20Culture=neutralPublicKeyToken=e8ab424810b6b9b5 " /> 

where 2008.1.619.20 is the assembly version for ASP.NET 2.0 and
2008.1.619.35 is the assembly version for ASP.NET 3.5 (please enter it appropriately)

By analogy, the httpHandler should look like:

<add verb="*" path="Telerik.RadUploadProgressHandler.ashx" 
type="Telerik.Web.UI.RadUploadProgressHandler, 
Telerik.Web.UI, Version =2008.1.619.20Culture=neutralPublicKeyToken =e8ab424810b6b9b5 " /> 

Please enter the version according to your framework version.

We will update our online help immediately and the change will be visible after the next site update.

Thank you for you for spotting this to us - I have updated your Telerik Points.

Kind regards,
Veskoni
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Upload (Obsolete)
Asked by
Manish Arora
Top achievements
Rank 1
Answers by
Veselin Vasilev
Telerik team
Share this question
or