Question: How to make webform launch winform app

  • Thread starter Thread starter VB Programmer
  • Start date Start date
V

VB Programmer

How can I launch a local winform application from a web page?

(FYI: My goal is to have this winform be a "no touch deployment"
application.)

Thanks.
 
growNO-SPAM@go- said:
How can I launch a local winform application from a web page?

(FYI: My goal is to have this winform be a "no touch deployment"
application.)

I believe you can simply do something like:

<a href="mywinformapp.exe">Launch App</a>

Of course, the client will need to have the runtime installed.
 
Back
Top