ASP
view release on metacpan or search on metacpan
87888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
%ENV
= ();
for
(Win32::OLE::in
$Request
->ServerVariables) {
$ENV
{
$_
} =
$Request
->ServerVariables(
$_
)->Item;
}
}
}
$VERSION
=
'1.07'
;
$ASPOUT
=
tie
*RESPONSE_FH
,
'ASP::IO'
;
select
RESPONSE_FH
unless
$APACHE
;
$SIG
{__WARN__} =
sub
{ ASP::Print(
@_
) };
sub
_END {
&$_
()
for
@DeathHooks
;
@DeathHooks
= (); 1; }
=head1 NAME
ASP - a Module for ASP (PerlScript) Programming
=head1 SYNOPSIS
use strict;
use ASP qw(:strict);
print "Testing, testing.<BR><BR>";
my $item = param('item');
if($item eq 'Select one...') {
die "Please select a value from the list.";
}
print "You selected $item.";
exit;
=head1 DESCRIPTION
This module is based on Matt Sergeant's excellent
Win32::ASP module, which can be found at
After using Mr. Sergeant's module, I took on the task of
customizing and optimizing it for my own purposes. Feel
free to use it if you find it useful.
23456789101112131415161718192021222324
ASP - a Module
for
ASP (PerlScript) Programming
SYNOPSIS
"Testing, testing.<BR><BR>"
;
my
$item
= param(
'item'
);
if
(
$item
eq
'Select one...'
) {
die
"Please select a value from the list."
;
}
"You selected $item."
;
exit
;
DESCRIPTION
This module is based on Matt Sergeant's excellent Win32::ASP
module, which can be found at
<http://www.fastnetltd.ndirect.co.uk/Perl>. After using Mr.
Sergeant's module, I took on the task of customizing and
find it useful.
( run in 1.282 second using v1.01-cache-2.11-cpan-49f99fa48dc )