NAME
    CGI::ASP::Lite - Limited IIS Request/Response object implemenation for
    Apache
    You can write "ASP ready" CGI scripts under Apache. Making for future
    porting to IIS almost seamless.
SYNOPSIS
            use CGI::ASP::Lite; 
            $Response->Write("hello
\n");
            $IE=true if $Request->ServerVariables("HTTP_USER_AGENT")->Item =~/MSIE/;
 
            $Response->Write("IE=$IE
\n");
            $id    = $Request->QueryString("id")->Item;
            $name  = $Request->Form("name")->Item;
DESCRIPTION
    Limited implementation of IIS Request/Response objects for non-IIS
    environments. Provides common CGI API.