I'm pretty new to this side of coding. Well say i want to run an EXE via ASP server side well that fine.
VB Code:
<% Dim WshShell set WshShell = CreateObject("WScript.Shell") WshShell.Run "C:\WINDOWS\Desktop\file.exe" set WshShell= nothing %>
This will call the EXE thats from an asp page on my web server, win 98 (PWS).
So does the client thats viewing this page see the full functionality of the EXE on their desktop or in their browser or how exactly does it work?
