NAME

Apache2::ASP::SessionStateManager - Base class for Session State Managers.

SYNOPSIS

Within your ASP script:

<%
  $Session->{counter}++;
  $Response->Write("You have viewed this page $Session->{counter} times.");
%>

DESCRIPTION

The global $Session object is an instance of a subclass of Apache2::ASP::SessionStateManager.

It is a blessed hash that is persisted within a database. Use it to share information across all requests for all users.

NOTE: - do not store database connections within the $Session object because they cannot be shared across different processes/threads at this time.

METHODS

TBD

BUGS

It's possible that some bugs have found their way into this release.

Use RT http://rt.cpan.org/NoAuth/Bugs.html?Dist=Apache2-ASP to submit bug reports.

HOMEPAGE

Please visit the Apache2::ASP homepage at http://www.devstack.com/ to see examples of Apache2::ASP in action.

AUTHOR

John Drago mailto: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.