in reply to Execute perlscript on ASP

I guess you need to do something like described here for Active Perl for Strawberry. Probably the Active Perl installer does it for you? 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

Replies are listed 'Best First'.
Re^2: Execute perlscript on ASP
by NetWallah (Canon) on Nov 29, 2017 at 17:24 UTC
    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.

      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.

      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