hey guys, i have a .net windows based application, now once i give the application to the client, is there any way i can update the application given to the client through internet, i mean i have a website, whenever client run my application, application should first take updates from the url specified and then it should start, so that i dont have to go to client everytime for any updations, is there any way like this..
Asked
Active
Viewed 844 times
1
-
1possible duplicate of [How can a .net program update itself?](http://stackoverflow.com/questions/1609957/how-can-a-net-program-update-itself) – Merlyn Morgan-Graham Mar 24 '11 at 07:22
4 Answers
0
Making a dotnet client application update itself over internet can be done in two ways (i know of)
Microsoft has something they call clickonce that, IIRC, works over internet.
It isn't that hard to roll your own though. You have a startup exe which does the checking and downloads a new main exe when needed. HTH

LosManos
- 7,195
- 6
- 56
- 107
0
If you do not want to use ClickOnce you can have a look at codeplex NetSparkle AutoUpdate for .NET, a class library that handles this for you.

k3b
- 14,517
- 7
- 53
- 85