Ross Ferguson > CGI-ASP-Lite-1.03 > CGI::ASP::Lite

Download:
CGI-ASP-Lite-1.03.tar.gz

Annotate this POD

CPAN RT

Open  0
Report a bug
Source  

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<br>\n");

        $IE=true if $Request->ServerVariables("HTTP_USER_AGENT")->Item =~/MSIE/;
 
        $Response->Write("IE=$IE<br>\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.