NAME
Apache2::ASP::Handler - Base class for all Apache2::ASP handlers
SYNOPSIS
package MyHandler;
use strict;
use base 'Apache2::ASP::Handler';
sub run {
my ($s, $Session, $Request, $Response, $Server, $Application) = @_;
$Response->Write("Hello, world!.");
}# end run()
1;# return true:
DESCRIPTION
Apache2::ASP::Handler offers an "in-between" environment in which there is no Perl embedded within HTML (via <% and %> tags) but you still get the ASP objects ($Reqest
, $Response
, $Session
, $Server
and $Application
).
In ASP.Net, an Apache2::ASP Handler is nearly analogous to an *.ashx generic handler.
AUTHOR
John Drago jdrago_999@yahoo.com
COPYRIGHT AND LICENSE
Copyright 2007 John Drago, All rights reserved.
This software is free software. It may be used and distributed under the same terms as Perl itself.