Dev Express Component Not Working

Discussion in 'ASP.NET / ASP.NET Core' started by Will1968, Dec 4, 2008.

  1. I am using a number of Dev Express components successfully on my own PC.

    However when I publish the website to Discount ASP.net the web config errors.

    This is the line in my web.config file that causes the problems...

    Configuration Error
    Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

    Parser Error Message: Could not load file or assembly 'DevExpress.Data.v8.2, Version=8.2.4.0, Culture=neutral, PublicKeyToken=9b171c9fd64da1d1' or one of its dependencies. The system cannot find the file specified.

    Source Error:






    Code:
    Line 52: 				<add assembly="DevExpress.Web.v8.2, Version=8.2.4.0, Culture=neutral, PublicKeyToken=9B171C9FD64DA1D1"/>
    Line 53: 				<add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
    Line 54: 				<add assembly="DevExpress.Data.v8.2, Version=8.2.4.0, Culture=neutral, PublicKeyToken=9B171C9FD64DA1D1"/>
    Line 55: 				<add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
    Line 56: 				<add assembly="DevExpress.Web.ASPxEditors.v8.2, Version=8.2.4.0, Culture=neutral, PublicKeyToken=9B171C9FD64DA1D1"/>
    Source File: E:\web\curtainsmad\htdocs\web.config Line: 54

    I think that it is something to do with the DLL files that have not possibly been carried across.


    Can anyone give me some pointers.


    This maybe totally obvious, my asp.net experience up to now is limited to testing things locally on my own PC.


    Many Thanks


    Will
     
  2. Bruce

    Bruce DiscountASP.NET Staff

    this error usually means that the required dll is NOT in the application root's bin directory. Check to make sure you upload the dll.


    Bruce

    DiscountASP.NET
    www.DiscountASP.NET
     
  3. Many thanks.


    It now works.
     

Share This Page