in reply to Re: Execute perlscript on ASP
in thread Execute perlscript on ASP

That link will help serve up perl cgi pages (The same way Linux does).

What I think the OP is looking for is support for scripting like:

<%@ Language=PerlScript %> <h1>Hello World Perlscript test</h1> <% print "Hello World from PerlScript"; %>
I'm not sure if this is possible with Strawberry perl.
Here is some info on the implementation with Activestate:
https://community.activestate.com/node/8908

                All power corrupts, but we need electricity.

Replies are listed 'Best First'.
Re^3: Execute perlscript on ASP
by saipro10 (Initiate) on Nov 30, 2017 at 09:43 UTC
    What NetWallah is saying is correct. Is there any work around for Strawberry Perl. Active Perl involves licensing cost and that is why I wanted to make it work with Strawberry Perl.
      If this is a legacy system without a substantial upgrade/conversion budget, my recommendation is to leave it as a separate isolated system running on the old, free Activestate perl while you plan, re-design and budget how to replace it.

      Non Javascript in-line code has been out of style for many years - it is time to move on to modern frameworks which currently use REST/JSON interfaces, and Jquery/Bootstrap/Angular front-ends, possibly with perl/dancer2/mojo backends (or node.js and many other alternatives).

                      All power corrupts, but we need electricity.

Re^3: Execute perlscript on ASP
by karlgoethebier (Abbot) on Nov 29, 2017 at 17:38 UTC

    Ouch, yes. PerlScript != perl script. Thanks and best regards, Karl

    «The Crux of the Biscuit is the Apostrophe»

    perl -MCrypt::CBC -E 'say Crypt::CBC->new(-key=>'kgb',-cipher=>"Blowfish")->decrypt_hex($ENV{KARL});'Help