28Jan
Filed in Uncategorized
Leave a comment
If you developed crystal report in VS2008 for your web project and you need to deploy it on production or test server where VS is not installed. You need to install crystal runtime on server in order to view your report. Crystal runtime can be found very easily on development machine.
C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bootstrapper\Packages\CrystalReports10_5
CRRedist2008_x64.msi (For 64 bit Machine)
CRRedist2008_x86.msi (For 32 bit Machine)
20Jan
Filed in Uncategorized
Leave a comment
I got this error when I am trying to create a report using Crystal Reports tool included in VS2008 with .NET 3.5 SP1. I also have VS2005 installed. I found perfect solution on the below website but must consider the scenario.
http://sjc.ironspeed.com/post?id=3039720
|
<runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> <dependentAssembly> <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35" /> <strong><bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.5.0.0" /></strong> <!--bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" /--> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35" /> <strong><bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.5.0.0" /></strong> <!--bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" /--> </dependentAssembly> </assemblyBinding> </runtime> |
Crystal report VS2008