web application question
-
Hi, I have an desktop win application by c#.(not ASP.net app) And I want other users to launch it from internet browser, just like launch MS Word from IE, or launching it like java applet from web page. What should I do to the c# code so that it can behave like that ? Is it similar to the concept of web application ? How many ways can I adopt to achieve it ? And how can the c# app to communicate with the web page that it is launched ? Thanks
-
Hi, I have an desktop win application by c#.(not ASP.net app) And I want other users to launch it from internet browser, just like launch MS Word from IE, or launching it like java applet from web page. What should I do to the c# code so that it can behave like that ? Is it similar to the concept of web application ? How many ways can I adopt to achieve it ? And how can the c# app to communicate with the web page that it is launched ? Thanks
vs 2005 has the right property set called "Click once" deployment which enhances winforms application versioning and deployment. By publishing it on a web server; your application will be accessible on a link... read my article on this search as "vwd" Mikail Çetinkaya . The C# DEveloper