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:

Access MyHandler via the URL /handlers/MyHandler on your website.

DESCRIPTION

Apache2::ASP::Handler offers an "in-between" ASP environment in which there is no Perl embedded within HTML (via <% and %> tags) but you still get the ASP objects ($Request, $Response, $Session, $Server and $Application).

Handlers are useful for things like form processing when no HTML content is sent back to the client (because the client is redirected to another ASP instead).

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.