/usr/local/perl/lib/site_perl/5.6.1/sun4-solaris/HTML/Embperl/Syntax/ASP.pm



NAME

ASP syntax module for Embperl


SYNOPSIS

    [$syntax ASP $]
    <% $a = 1 ; %>
    <table>
        <% foreach (1..5) { %>
            <tr>
                <td><%= $_ %></td>
                <td><%= $a += 2 %></td>
            </tr>
        <% } %>
    </table>


DESCRIPTION

The module add the ASP syntax to Embperl. That mean when you select ASP as syntax, Embperl understand the two following tags:

<% %>
Between <% and %> you can put any Perl code that should be executed.

<%= %>
Between <%= and %> you can place a valid Perl expression and the result of the expression is inserted instead of the <%= %> block.


Author

Gerald Richter <richter@dev.ecos.de>


See Also

HTML::Embperl::Syntax

 /usr/local/perl/lib/site_perl/5.6.1/sun4-solaris/HTML/Embperl/Syntax/ASP.pm