Write an ASP page which then calls a CGI script.

In file blah.asp:

Dim param1, param2
param1 = Request.QueryString("param1")
param2 = Request.QueryString("param2")

Response.Redirect "somewhere.cgi?param1=" & param1 & "&param2=" & param2

... and so on is one way to do it, if I understand what you are asking for.

:)

James


Alessandro Forghieri wrote:
> 
> Greetings.
> I realize this is an Off-Topic with serious flamage potential, so I'll keep
> it very short.
> Is anybody aware of any module capable of doing for the ASP environment what
> Apache::Registry does for mod_perl? (i.e. making an asp request look and
> feel as if it were an old plain  cgi-bin)
> 
> Cheers,
> alf

Reply via email to