How can I call a vb.net Exe from an asp.net page?
Hi
I need to call an exe with parameters like language and username from an asp.net page.
Example: myapp EN joe (my app runs in English with user Joe logged in)
The exe is in a sever and the web application in another.
Actually I'm calling the exe from the web like this:
response.request("http://servername/myexe.exe?par1&par2")
This works OK except for the case when myexe.exe uses a webservice. Then it tries to call an non-existent config file named 'myexe.exe?par1&pa2.config'
How can I fix this error?
Is there any other way to pass parameters to an exe when it is leaded form the web?
|