Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
75
Web UI Control Missing Assembly Issue
posted

HI,

I am getting these assembly errors on build:

Error 1 The type 'Infragistics.WebUI.Shared.ISmartCallbackRender' is defined in an assembly that is not referenced. You must add a reference to assembly 'Infragistics45.WebUI.Shared.v14.1, Version=14.1.20141.2011, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb'. \\psf\Home\Documents\Visual Studio 2013\Reccelerator\Reccelerator\EventManagement\GlobalCalendar.aspx.designer.cs 31 74 Reccelerator Error 2 The type 'Infragistics.WebUI.Shared.IUltraLicensedComponent' is defined in an assembly that is not referenced. You must add a reference to assembly 'Infragistics45.WebUI.Shared.v14.1, Version=14.1.20141.2011, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb'. \\psf\Home\Documents\Visual Studio 2013\Reccelerator\Reccelerator\EventManagement\GlobalCalendar.aspx.designer.cs 31 74 Reccelerator Error 3 The type 'Infragistics.WebUI.WebControls.SmartWebControl' is defined in an assembly that is not referenced. You must add a reference to assembly 'Infragistics45.WebUI.Shared.v14.1, Version=14.1.20141.2011, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb'. \\psf\Home\Documents\Visual Studio 2013\Reccelerator\Reccelerator\EventManagement\GlobalCalendar.aspx.designer.cs 31 74 Reccelerator

Can I please send my webconfig or something to you to fix this issue?  I'm going by the youtube video Get Started with the Web Schedule Control.

https://www.youtube.com/watch?v=X0pua3Riy78&list=PLDAFFE8C757FED32E&index=21

Thanks,

NK

Parents
  • 20255
    Offline posted

    Hello Noah,

     Thank you for contacting us.

     About the missing reference, you will need to add WebUI.Shared reference to your web.config definition. If you have installed version 14.1 of our product this means that you have this reference already in the GAC so you will need just to specify it in your web.config.

     As I understand you are just starting to use our WebSchedule control, so I have created a sample that is showing how to reference all necessary dll-s for using WebScheduleInfo, WebMonthView, WebDayView and WebScheduleGenericDataProvider.

     Code snippet:

    1. <compilation debug="true" targetFramework="4.0">
    2.       <assemblies>
    3.         <add assembly="Infragistics4.Web.v14.1, Version=14.1.20141.2011, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB"/>
    4.         <add assembly="Infragistics4.WebUI.WebScheduleDataProvider.v14.1, Version=14.1.20141.2011, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB"/>
    5.         <add assembly="Infragistics4.WebUI.Shared.v14.1, Version=14.1.20141.2011, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB"/>
    6.         <add assembly="Infragistics4.WebUI.WebSchedule.v14.1, Version=14.1.20141.2011, Culture=neutral, PublicKeyToken=7DD5C3163F2CD0CB"/>
    7.       </assemblies>
    8.     </compilation>

     If you have any other questions, contact me.

    WebScheduleExample.zip
Reply Children
No Data