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
686
Versioning problem
posted

We have a large project using the classic netadvantage controls. The old webdatechooser (10.1.20101.1011) doesnt work with the latest version of internet explorer and so we needed to upgrade. The problem is we can't use the upgrade utility to just upgrade the whole project due to the retired asp.net controls, so what we did was add the new netadvantage controls to the project and manually replace the old controls with the new ones for the most important parts of the system, leaving many still using the old ones (because its a huge job to go through them all).

So now the situation is that we have a project with some pages using new netadvantage controls (12.2.20122.2075) and the rest still on the old version (10.1.20101.1011).

I went to install netadvantage 2012 Vol 2 on a new pc, and during the install it noticed there were updates, so it downloaded them (without giving us an option to ignore the updates and continue with the existing version). So now we have the new machine installed using 12.2.20122.2107 of the controls - but the project is using 12.2.20122.2075. So now it wont compile - so i thought ok thats a bit annoying, ill just upgrade the project to use the latest version 12.2.20122.2107, but then i realised i cant do that because i still have references to the retired controls.


What am i supposed to do here?

Parents
  • 17590
    Offline posted

    Hello Niel,
    What I can suggest is manually changing the point assembly references from pointing to version 12.2.20122.2075 to pointing to your current version (12.2.20122.2107). This should be done on every Web Form in the Register directive where the assemblies are being registered as well as in the web.config file of the application. For example:

     

    <%

    @ Register assembly="Infragistics45.Web.v12.2, Version=12.2.20122.2107, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.Web.UI.GridControls" tagprefix="ig" %>


    I believe this would resolve the issue. However if you still want to use version 12.2.20122.2075 of NetAdvantage just let me know. I hope this helps. Feel free to contact me if you have any additional questions regarding this matter.

    Please let me know if you have any additional questions.

Reply Children
No Data