Upgrading an existing asp.net project using WCF

I have an ASP.net project for eCommerce. There are 20 important DLLs and more java script files in this project, when I want to update the website for my clients, I have to provide them dlls and js files and ask them to replace new files with old files and a lot of trouble.


But I want to create a system such as a web service to update each client automatically, like an anti-virus update!

Is it possible!

+4
source share
2 answers

What about ClickOnce ?

This is a Microsoft tool that allows you to update the client automatically. When the client opens the application, it asks the server if there are any updates. If there is, he downloads them and updates. If not, nothing special happens and the application only launches regularly.

+1
source

A web deployment package works pretty well.

Create Package: Right-click Publish and select Web Deploy Package . This creates a .zip deployment package, which can then be easily imported into IIS.

Deployment in IIS 7: Right-click on your site -> Deploy Import Application Go to the .zip deployment package so that it is. Detailed description

+1
source

All Articles