| Apache2::ASP::Parser - ASP -> Perl parsing engine |
Apache2::ASP::Parser - ASP -> Perl parsing engine
my $parsed_file = Apache2::ASP::Parser->parse_file( $asp_filename ); my $parsed_str = Apache2::ASP::Parser->parse_string( $asp_string );
Converts ASP code like:
<% $Response->Write("Hello, World!"); $Response->End; %>
Into Perl code like:
$Response->Write(q~~); $Response->Write("Hello, World!"); return; ;$Response->Write(q~ ~);
Returns the contents of that file, parsed into ASP Perl.
Returns $str, parsed into ASP Perl.
It's possible that some bugs have found their way into this release.
Use RT http://rt.cpan.org/NoAuth/Bugs.html to submit bug reports.
Please visit the Apache2::ASP homepage at http://apache2-asp.no-ip.org/ 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.
| Apache2::ASP::Parser - ASP -> Perl parsing engine |