I just upgraded my website to use the latest version of RadControls for ASP.NET AJAX (2008.Q2 1001) but when I deployed the website it didn't recognize the new versions, so I had to modify the web.config file to downgrade the version to 723.
After reviewing the new dlls I noticed that the dates are correct, but for some reason they don't work on my server.
Also, the Telerik.Web.UI.dll has a date of 9/30/2008 2:21 PM, which seems old. All other dlls have 10/8/2008.
My Web.Config file has the following entries:
<
add assembly="Telerik.Charting, Version=2.0.5.0, Culture=neutral, PublicKeyToken=D14F3DCC8E3E8763"/>
<
add assembly="Telerik.ReportViewer.WebForms, Version=2.8.8.925, Culture=neutral, PublicKeyToken=A9D7983DFCC261BE"/>
<
add assembly="Telerik.Reporting.Processing, Version=2.8.8.925, Culture=neutral, PublicKeyToken=A9D7983DFCC261BE"/>
<
add assembly="Telerik.Reporting, Version=2.8.8.925, Culture=neutral, PublicKeyToken=A9D7983DFCC261BE"/>
<
add assembly="Telerik.Reporting.Interfaces, Version=2.8.8.925, Culture=neutral, PublicKeyToken=A9D7983DFCC261BE"/>
But after the deploy I had to change it back to:
<
add assembly="Telerik.Charting, Version=2.0.3.0, Culture=neutral, PublicKeyToken=D14F3DCC8E3E8763"/>
<
add assembly="Telerik.ReportViewer.WebForms, Version=2.8.8.723, Culture=neutral, PublicKeyToken=A9D7983DFCC261BE"/>
<
add assembly="Telerik.Reporting.Processing, Version=2.8.8.723, Culture=neutral, PublicKeyToken=A9D7983DFCC261BE"/>
<
add assembly="Telerik.Reporting, Version=2.8.8.723, Culture=neutral, PublicKeyToken=A9D7983DFCC261BE"/>
<
add assembly="Telerik.Reporting.Interfaces, Version=2.8.8.723, Culture=neutral, PublicKeyToken=A9D7983DFCC261BE"/>
How can I fix this?
Thanks.
Jose Guay