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
170
Upgrade Infragistics from V11.1 to V13.2
posted

Hey,

I get ready to upgrade Infragistics(ASP.NET) from V11.1 to V13.2.

But i found some namespace is changed or delete.I don't know.

Can you tell me how to change below code?

<add tagPrefix="igexcel" namespace="Infragistics.Excel" assembly="Infragistics4.WebUI.Documents.Excel.v11.1, Version=11.1.20111.2225, Culture=neutral, PublicKeyToken=00000000000000"/>
<add tagPrefix="igmisc" namespace="Infragistics.WebUI.Misc" assembly="Infragistics4.WebUI.Misc.v11.1, Version=11.1.20111.2225, Culture=neutral, PublicKeyToken=00000000000000"/>
<add tagPrefix="igtxt" namespace="Infragistics.WebUI.WebDataInput" assembly="Infragistics4.WebUI.WebDataInput.v11.1, Version=11.1.20111.2225, Culture=neutral, PublicKeyToken=00000000000000"/>
<add tagPrefix="ignav" namespace="Infragistics.WebUI.UltraWebNavigator" assembly="Infragistics4.WebUI.UltraWebNavigator.v11.1, Version=11.1.20111.2225, Culture=neutral, PublicKeyToken=00000000000000"/>
<add tagPrefix="igcmbo" namespace="Infragistics.WebUI.WebCombo" assembly="Infragistics4.WebUI.WebCombo.v11.1, Version=11.1.20111.2225, Culture=neutral, PublicKeyToken=00000000000000"/>
<add tagPrefix="iglbar" namespace="Infragistics.WebUI.UltraWebListbar" assembly="Infragistics4.WebUI.UltraWebListbar.v11.1, Version=11.1.20111.2225, Culture=neutral, PublicKeyToken=00000000000000"/>
<add tagPrefix="ig_spell" namespace="Infragistics.WebUI.WebSpellChecker" assembly="Infragistics4.WebUI.WebSpellChecker.v11.1, Version=11.1.20111.2225, Culture=neutral, PublicKeyToken=00000000000000"/>
<add tagPrefix="igsch" namespace="Infragistics.WebUI.WebSchedule" assembly="Infragistics4.WebUI.WebDateChooser.v11.1, Version=11.1.20111.2225, Culture=neutral, PublicKeyToken=00000000000000"/>
<add tagPrefix="ighedit" namespace="Infragistics.WebUI.WebHtmlEditor" assembly="Infragistics4.WebUI.WebHtmlEditor.v11.1, Version=11.1.20111.2225, Culture=neutral, PublicKeyToken=00000000000000"/>
<add tagPrefix="igchartprop" namespace="Infragistics.UltraChart.Resources.Appearance" assembly="Infragistics4.WebUI.UltraWebChart.v11.1, Version=11.1.20111.2225, Culture=neutral, PublicKeyToken=00000000000000"/>
<add tagPrefix="igchart" namespace="Infragistics.UltraChart.Resources.Appearance" assembly="Infragistics4.WebUI.UltraWebChart.v11.1, Version=11.1.20111.2225, Culture=neutral, PublicKeyToken=00000000000000"/>
<add tagPrefix="igchartdata" namespace="Infragistics.UltraChart.Data" assembly="Infragistics4.WebUI.UltraWebChart.v11.1, Version=11.1.20111.2225, Culture=neutral, PublicKeyToken=00000000000000"/>
<add tagPrefix="igchart" namespace="Infragistics.WebUI.UltraWebChart" assembly="Infragistics4.WebUI.UltraWebChart.v11.1, Version=11.1.20111.2225, Culture=neutral, PublicKeyToken=00000000000000"/>
<add tagPrefix="iggauge" namespace="Infragistics.WebUI.UltraWebGauge" assembly="Infragistics4.WebUI.UltraWebGauge.v11.1, Version=11.1.20111.2225, Culture=neutral, PublicKeyToken=00000000000000"/>
<add tagPrefix="iggauge" namespace="Infragistics.UltraGauge.Resources" assembly="Infragistics4.WebUI.UltraWebGauge.v11.1, Version=11.1.20111.2225, Culture=neutral, PublicKeyToken=00000000000000"/>
<add tagPrefix="iggaugeprop" namespace="Infragistics.UltraGauge.Resources" assembly="Infragistics4.WebUI.UltraWebGauge.v11.1, Version=11.1.20111.2225, Culture=neutral, PublicKeyToken=00000000000000"/>
<add tagPrefix="igcalc" namespace="Infragistics.WebUI.UltraWebCalcManager" assembly="Infragistics4.WebUI.UltraWebCalcManager.v11.1, Version=11.1.20111.2225, Culture=neutral, PublicKeyToken=00000000000000"/>
<add tagPrefix="ignavbar" namespace="Infragistics.WebUI.WebNavBar" assembly="Infragistics4.WebUI.WebNavBar.v11.1, Version=11.1.20111.2225, Culture=neutral, PublicKeyToken=00000000000000"/>
<add tagPrefix="igtk" namespace="Infragistics.WebUI" assembly="Infragistics4.WebUI.WebResizingExtender.v11.1, Version=11.1.20111.2225, Culture=neutral, PublicKeyToken=00000000000000"/>

Parents Reply
  • 22852
    Suggested Answer
    Offline posted in reply to Code Warrior

    The ASP.NET Classic Control Migration Guide does include the following in the list of classic controls that were retired:

    • WebCombo
    • WebGrid which is the UltraWebGrid.
    • WebDateChooser
    • WebNumericEdit
    • WebPanel

    Of the list provided, the following are still in the current volume:

    • WebSchedule
    • WebHtmlEditor

    For the UltraGrid and UltraGridColumn, I assume that you meant the UltraWebGrid and this was retired and is in the list as WebGrid.  For DateFormat, I am not sure what you are referring to.

    Let me know if you have any questions.

Children