When you install Spread ASP.NET and you have used previous versions of the product, you might need to update Microsoft Visual Studio .NET and your existing projects, as explained in this topic.
For existing projects, make sure the reference path is correct, and add the new FpSpread assemblies. To do so, follow these instructions:
Add the following information to Web.config, to prevent verbose information such as "Version=6.0.3505.2008, Culture=neutral, PublicKeyToken=327c3516b1b18457". Existing pages are not affected.
<add tagPrefix="FarPoint" namespace="FarPoint.Web.Spread" assembly ="FarPoint.Web.Spread, Version=6.0.3505.2008, Culture=neutral, PublicKeyToken=327c3516b1b18457"/>
<add tagPrefix="FarPoint" namespace="FarPoint.Web.Chart" assembly ="FarPoint.Web.Chart, Version=6.0.3505.2008, Culture=neutral, PublicKeyToken=327c3516b1b18457"/>
If you would like to upgrade your web application (built with an older version of FarPoint.Web.Spread.dll) to a newer version (binary update assemblies only, without rebuilding or adding new pages), you can use the following steps:
<configuration>
...
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="FarPoint.Web.Spread" publicKeyToken="327c3516b1b18457" />
<bindingRedirect oldVersion="6.0.3503.2008" newVersion="6.0.3505.2008" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
Remember to make a backup of all your projects before upgrading. Once you have followed these instructions and upgraded the projects, and changed the Reference Path and loaded and saved the project, you will not be able to open the project in the old version. Once you have saved it in the new version, you cannot go back and open it in the old version. This restriction applies only to files that have a control on a form that had changes at design time that required writing objects to the RESX file.
Return to the Read Me overview.