
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.

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;

Limited implementation of IIS Request/Response objects for non-IIS environments. Provides common CGI API.