I need to run a .EXE from a web browser using Asp.net, whenever particular button is clicked in a web page it should open up the installation wizard, rather than downloading it
Can any one help me out
Thanks in advance
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.
For obvious security reasons you cannot run EXEs on client computers from a web application. If this was possible that would be a huge security vulnerability. The best you could do is provide a download link to the executable and ask the client to download and install it.
If you on the other hand you want to run the executable on the server you could use the
Process.Startmethod.