Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Whether you have done an OR sync on your e-Business bin or not, you should change the .NET framework to 4.8. Search for "targetFramework" in the web.config and update it to target .NET 4.8, like this: <compilation debug="true" targetFramework="4.8">

...

  1. Update the web config to update the binding redirect to the 2020 version:

    Code Block
    title

...

  1. Web Config
    collapsetrue
    <runtime>
    
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">

...

  1. 
    
          <dependentAssembly>

...

  1. 
    
            <assemblyIdentity name="Telerik.Web.UI" publicKeyToken="121FAE78165BA3D4" culture="neutral" />

...

  1. 
    
            <bindingRedirect oldVersion="2015.2.623.40" newVersion="2020.2.617.45" />

...

  1. 
    
          </dependentAssembly>

...

  1. 
    
        </assemblyBinding>

...

  1. 
    
      </runtime>

3.  Add the following key 

  1. Add this key: <add key="ValidationSettings:UnobtrusiveValidationMode" value="None" />

...

  1. Save and close your web.config.

Test

Now that your web.config and bin directory are updated you must test the site. 

...

  1. Locate your css style sheet (eBusinessStyles.css ) in the e-Business installed path. For the Non-CMS site, it will be available in Include Folder\eBusinessStyles.css .
  2. For CMS site, the below changes will need to be done in the respective css file.
    Open the file and add below CSS changes at the end of file:

    Code Block
    languagecss
    titleCSS changes
    collapsetrue
    .rwWindowContent > div {

...

  1. 
    
        width: inherit !important;

...

  1. 
    
        height: inherit !important;

...

  1. 
    
    }

...

  1. 
    
    .RadWindow .rwIcon{

...

  1. 
    
        margin-top: 8px !important;

...

  1. 
    
        top: 0 !important;

...

  1. 
    
    }

...

  1. 
    
    .RadWindow .rwTable {

...

  1. 
    
        height: 100% !important;

...

  1. 
    
    }

...

  1. 
    
    .popup-win-adminedit-Contactinfo{

...

  1. 
    
    height:auto !important;

...

  1. 
    
    }

...

  1. Locate the data_from.css file in the e-Business installed path. (Folder path <eBusiness installed path\App_Themes\Aptify\)
    Open the file and update Line Number  3067 

...

  1. and the following add width details:

    #ctl00_MainContentArea_Profile1_radwindowProfileImage_C{

    height: 589px !important;

    width: 478px !important;

    }

...

  1. Save and close the file.
  2. Restart the IIS.