I am developing an asp.net web application where i want to call (.exe i.e vb6 executable file ) when asp.net button is pressed(Client side). Is is possible? If possible plz share the idea
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
While you can’t run an EXE without some kind of prompt, you can use ClickOnce deployment to deploy an unmanaged application and run it (and keep it updated). You would need to create a manifest that demands full trust and the user would have to grant that trust the first time they run the application.
Also note that this will only work in Internet Explorer or on other browsers that have a plugin to enable ClickOnce deployment.
It’s worth noting that Google actually deploys Google Chrome using ClickOnce to IE users.