Apache2::ASP - ASP for Perl, reloaded.



NAME

Apache2::ASP - ASP for Perl, reloaded.


SYNOPSIS

Hello World

  <html>
  <body><%= "Hello, World!" %></body>
  </html>

Favorite Color

  <html>
  <body>
  <%
    if( $Form->{favorite_color} )
    {
  %>
    Your favorite color is <%= $Server->HTMLEncode( $Form->{favorite_color} ) %>.
  <%
    }
    else
    {
  %>
    What is your favorite color?
    <form>
      <input type="text" name="favorite_color">
      <input type="submit" value="Submit">
    </form>
  <%
    }# end if()
  %>
  </body>
  </html>


DESCRIPTION

Apache2::ASP scales out well and has brought the ASP programming model to Perl in a new way.

This rewrite had a few major goals:


BUGS

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.


HOMEPAGE

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


AUTHOR

John Drago <jdrago_999@yahoo.com>


COPYRIGHT

Copyright 2008 John Drago. All rights reserved.


LICENSE

This software is Free software and is licensed under the same terms as perl itself.

 Apache2::ASP - ASP for Perl, reloaded.