I've made a CGI application that consist of one
webmodule with several actions on it. Every action
has a different set of parameters.
I have uploaded and tested the application by
typing its URL directly, and it works fine.
Now I want to make a page that "calls" or "uses" that
application: I want that the the output of the application
(the application produces text or html) appears
inside of the page.
What I do not want is the user to be able to see
that the CGI.EXE is actually being called, nor the
parameters on which it's called.
I have tried SSI includes, and it works on executing a .EXE
and writing the output into the page, but I can't
put parameters in the include.
On the other hand, I have tried ASP, and I can't execute
the application and pass it parameters with something like:
dim wsh
set wsh = createobject("WScript.Shell")
wsh.run("CGI.EXE/mainAction?par1=2&par2=b")
and it works, it actually executes CGI.EXE... but the
output of the program is not inserted in the page.
Can please someone tell me how to
a) execute the program and be able to pass it parameters
b) That the output of the program be a part of the page
c) That the user don't see the call to the program.
Thanks in advance!
Raul
"Raul Latashen" <ra...@reliable.com.ar> wrote in message
news:3dffb292$1...@newsgroups.borland.com...