Hello,
I have developed two applications, one ASP.NET web application (myWebAppl) and one windows application (myWinAppl).
myWebAppl Details : This application has two web pages myPage1.aspx and myPage2.aspx.
myWinAppl Details : This is a single instance windows application, which accepts some parameters.
Now from myPagep1.aspx (depending on the requirement) I want to check whether myWinAppl is installed on client machine or not
- if it is installed, I want to run myWinAppl and pass the required parameters.
- if it is not installed, the web page should prompt the user that myWinAppl is not installed on your machine, so download it from server.
How do I do this?
Shital