Just a quick question, where do I put the exe that I am trying to launch in an ASP project? It cant see it in the bin folder.
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.
You need to pass a full path to
Process.Start:However,
~/bin/is meant for .Net assemblies; it’s generally better to put external EXEs in~/App_Data/.Note that you can only execute programs on the server, not the client.