CGI::ASP::Lite

IIS Request/Response object implemenation for Apache

You can write "ASP ready" CGI scripts under Apache. Making for future 
porting to IIS almost seamless.



    use CGI::ASP::Lite; 

    $IE=true if $Request->ServerVariables("HTTP_USER_AGENT")->Item =~/MSIE/;

    $Response->Write("hello<br>\n");
 
    $Response->Write("IE=$IE<br>\n");

    $Response->Write("id=" . $Request->QueryString("id")->Item . "<br>\n");




Ross Ferguson 
15 April, 2001

 

