[Message Deleted]
-
On the client side? You can't. The client machine is off limits to code running inside a browser session. ASP.NET apps don't have any access to the client machine at all. On the server side, you can just use the
Process
class. Although, running an .EXE from a web request isn't a good idea. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome -
On the client side? You can't. The client machine is off limits to code running inside a browser session. ASP.NET apps don't have any access to the client machine at all. On the server side, you can just use the
Process
class. Although, running an .EXE from a web request isn't a good idea. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome -
I need to run one exe file from web application and what u suggest me? is any better way to run exe file from webapp.?
FlushCode wrote:
is any better way to run exe file from webapp.?
No, he gave you the solution.
... now you see that evil will always triumph, because good is dumb. - Dark Helmet
-
I need to run one exe file from web application and what u suggest me? is any better way to run exe file from webapp.?
Better way??? You weren't listening were you? There is NO way. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
-
Better way??? You weren't listening were you? There is NO way. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
Well, he *could* use an ActiveX control (ugh) if he wants to run software on the client end. Also, you can use .NET assemblies embedded inside web pages as well, however, thanks to .NET's Code Access Security, he wouldn't be able to launch some arbitrary application.
-
Well, he *could* use an ActiveX control (ugh) if he wants to run software on the client end. Also, you can use .NET assemblies embedded inside web pages as well, however, thanks to .NET's Code Access Security, he wouldn't be able to launch some arbitrary application.
Judah Himango wrote:
thanks to .NET's Code Access Security, he wouldn't be able to launch some arbitrary application.
Yep! :laugh: RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome