Re: OT: Converting a ASP request to CGI?

2001-11-30 Thread Alessandro Forghieri
Greetings. Thanks to all the respondednts - as it looks my original message was too terse, I'll try to clarify a bit. I have an app that already works on Apache CGI.pm, Apache::Registry and FastCGI. It also works under PWS/IIS as CGI - and I'll be testing it under AS's perlex shortly. At

OT: Converting a ASP request to CGI?

2001-11-28 Thread Alessandro Forghieri
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)

Re: OT: Converting a ASP request to CGI?

2001-11-28 Thread James Buchanan
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

Re: OT: Converting a ASP request to CGI?

2001-11-28 Thread Joshua Chamas
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