Adam Frielink wrote:
> > Could someone explain or point me to the place to find
> > information regarding PerlScript and the components needed to use
> > it on an W2K IIS5 machine?
> >
> > What do I need to install to make it all work together?

Just install the latest ActivePerl - it puts everything in place.

Then just start your asp files with

<%@ Language="PerlScript"%>

--
  Simon Oliver

Here's a short example:

<%@ Language="PerlScript"%>
<%
        my ($title, $perltype);
        $title = "Hello PerlScript";
        $perlxs = $ENV{PERLXS} || "Perl";
%>

<HTML><HEAD><TITLE><%=$title%></TITLE></HEAD><BODY>

<H4><%=$title%></H4>

<P>This is <%=$perlxs%> Version <%=$]%></P>

<H4>Here is the environment</H4>

<TABLE BORDER="1" CELLSPACING="0" CELLPADDING="2">

<%      foreach $var (keys %ENV) { %>
        <TR><TD><%=$var%></TD><TD><%=$ENV{$var}%></TD></TR>
<%      } %>

</TABLE>

</BODY></HTML>
_______________________________________________
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users

Reply via email to