I've found several postings on how to call .exe files from asp files and
info on WSH, but I am wondering if it is possible to execute an asp file
from the command line (simular to Perl for Win32). I came across a
posting suggesting to bind IE4 or some browser to the asp extention, but
I am looking for a more elegant solution.
Gary
--
Gary C. New "Web Development, SMIP Interactive"
___________________________________________________
Smip Interactive, Inc. v 703.442.5210 x233
http://www.smip.com f 703.442.5205
___________________________________________________
http://www.creators.com
Comics, advice, horoscopes and opinion - all the best in online
entertainment.
opening a local file will get you nowhere, since the ASP code will then not
be processed, If you open a file on a server (through http) you can use:
"start http://myserver/myfile.asp" this will work for local files as well
but it wont be processed...
cheers
Palloquin
Gary C. New wrote in message <36A676...@smip.com>...
Hope this helps.
Gary
Palloquin wrote:
>
> By executing from the command line, do you mean by the client.
> if so, do you mean an asp file on the internet, or a local file.
>
> opening a local file will get you nowhere, since the ASP code will then not
> be processed, If you open a file on a server (through http) you can use:
> "start http://myserver/myfile.asp" this will work for local files as well
> but it wont be processed...
>
> cheers
>
> Palloquin
--
Gary C. New wrote in message <36A7CB...@smip.com>...