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

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.

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

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.

All those inherited from Apache2::ASP::DOM::Node as well as:
Returns the root element.

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

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.

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

John Drago mailto:jdrago_999@yahoo.com

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.