Asp .net On_load Method Not Executing
I am working on a kludge which is working locally but not after I deploy it to our server. I have a web page which opens, runs an EXE and then closes the web page. Locally this wo
Solution 1:
It sounds like you're trying to launch a UI exe on the client, but what you're actually doing is executing it on the web server. If that's right, then fundamentally what you're trying to do is just ... not going to work. Ignoring the fact that the implementation would have to be completely different, browsers are explicitly designed not to run arbitrary executables from web servers - plus of course it would only work on certain OSes - presumably windows in this case.
A few years ago I might have said "look into ClickOnce for this" - but I have no idea whether that option is still supported or recommended.
Post a Comment for "Asp .net On_load Method Not Executing"