HTTP/1.1 404 Object Not Found Server: Microsoft-IIS/5.0 Date: Wed, 16 Nov 2005 05:13:19 GMT X-Powered-By: ASP.NET Connection: close Content-Type: text/html
404 Object Not Found
However with just this:
<!--#include virtual="/cgi-bin/search.cgi" -->
The complete search.cgi file prints across the screen (does not execute).
With this:
<!--#exec cgi="/cgi-bin/search.cgi" -->
The CGI file executes just fine. HOWEVER, I want to be able to pass that CGI variables and the variables are going to be dymanic.
Basically, I am have an SHTML file that passes variables to another SHTML file that in turn calls the CGI file and is supposed to pass the exact same variable to it.
Any suggestions?
zylstra
Joined: 10 May 2004
Posts: 125
Posted: Sun Mar 12, 2006 9:47 am
Did you try Code: <!--#set var="body" value="/cgi-bin/search.cgi?${QUERY_STRING}"-->
<!--#exec cgi="${body}" --> ?