NAME

Apache2::ASP::DOM::Document - Simple server-side DOM for ASP scripts

EXPERIMENTAL STATUS

NOTE: The entire DOM functionality for Apache2::ASP is still under heavy development and is subject to change in dramatic ways without warning.

DO NOT build anything that involves server-side DOM until it has matured.

SYNOPSIS

my $doc = $Request->Document;

foreach my $span ( $doc->getElementsByTagName("span") )
{
  # Do something with $span:
}# end foreach()

DESCRIPTION

Server-side DOM allows you to modify the appearance and behavior of elements within the page during runtime on the server, rather than while the ASP script is coded.

Well, it will, eventually.

PUBLIC PROPERTIES

All those inherited from Apache2::ASP::DOM::Node as well as:

documentElement

Returns the root element.

PUBLIC METHODS

Only those inherited from Apache2::ASP::DOM::Node.

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.