Thanx alot.
Can Anyone point me to a link about other similar problems I may have with
ASP envoirment.
> P.S.: I would not put the library directory UNDER the web root.
> If you want to place it somewhere near the web place it to
> $Server->MapPath("/")."\..\lib"
> Or at least make sure the /blah
> From: "raptor" <[EMAIL PROTECTED]>
> To:"Perl-WEB" <[EMAIL PROTECTED]>
> Subject: use Module doesn't work
> Date: Mon, 28 May 2001 13:30:26 +0100
> hi there,
>
> Why this doesn't work ( i get
hi there,
Why this doesn't work ( i get error that it can't find the module) :
my $libs = $Server->MapPath("/blah/lib");
unshift @INC, $libs;
use Utils;
# use lib $libs; doesn't work too.. I mean nothing is added to @INC
BUT this seems to work :
my $libs = $Server->MapPath("/blah/lib");
uns