Hi Can i run a c# winform program from my internet server?For example i install the program my server.after that i want to run this program other computer unless install framework to client
You're looking for ClickOnce deployment. (I'm guessing you mean that you want to host the winforms application)
You'd probably need one application running on your server that uses Windows Socket communication or similar which you can then use to trigger starting the other application since you generally can't remotely start applications remotely without remote desktop or similar. You can use FTP protocol with extensions to do this too I think but either way you'd most likely need one application running to trigger the other or use remote desktop.
Yes, you can run it using Remote Desktop. You will not need .NET Framework on your client machine but the program will run on the server. So it will have access only to the server resources.
精彩评论