A set of technologies in .NET for building web applications and web services. Miscellaneous topics that do not fit into specific categories.
Hi,
Thanks for reaching out.
When you publish an ASP.NET WebForms application, the deployment process does not uninstall or modify any software installed on the web server, including the Crystal Reports runtime. Publishing typically updates the application’s files (like DLLs, ASPX pages, and the web.config) but does not touch installed components like Crystal Reports 13.0.2, which is a separate system-level installation.
That said, there are a few things to keep in mind:
Check the version of Crystal Reports currently installed on the server. You can find this in Programs and Features on Windows.
If you reinstall a newer version of Crystal Reports Developer Edition on your dev machine, avoid referencing a newer runtime DLL unless you're also ready to upgrade the runtime on the server. Version mismatches can cause runtime errors.
Before publishing, make a backup of the server’s application folder and configuration files, just in case any settings or bindings get overwritten.
If you’re forced to use a newer Crystal version for development, you’ll likely need to update the server’s Crystal runtime to match.
In short: Publishing your updated app won’t remove Crystal Reports from the server, but it’s important to ensure version compatibility between your development environment and the production runtime.
Hope this helps!