ASP
view release on metacpan or search on metacpan
C<Warn> is an alias for the ASP::Print method described below. The
overloading of C<warn> as described above does not currently work
in Apache::ASP, so this is provided.
=cut
sub Warn { ASP::Print(@_); }
=head2 print LIST
C<print> is overloaded to write to the browser by default. The inherent
behavior of print has not been altered and you can still use an alternate
filehandle as you normally would. This allows you to use print just
as you would in CGI scripts. The following statement would need no
modification between CGI and ASP PerlScript:
print param('URL'), " was requested by ", $ENV{REMOTE_HOST}, "\n";
=head2 Print LIST
Prints a string or comma separated list of strings to the browser. Use
prototypes Matt placed on his subs.
Warn LIST
`Warn' is an alias for the ASP::Print method described below.
The overloading of `warn' as described above does not currently
work in Apache::ASP, so this is provided.
print LIST
`print' is overloaded to write to the browser by default. The
inherent behavior of print has not been altered and you can
still use an alternate filehandle as you normally would. This
allows you to use print just as you would in CGI scripts. The
following statement would need no modification between CGI and
ASP PerlScript:
print param('URL'), " was requested by ", $ENV{REMOTE_HOST}, "\n";
Print LIST
( run in 0.652 second using v1.01-cache-2.11-cpan-0a6323c29d9 )