Like many others have posted here, I'll point out again that ASP is itself not a language, but an object model provided by IIS. Apache::ASP strives to follow this object model, with the addition of some non IIS api extensions.

A carefully written ASP page using PerlScript will run on both platforms equally well, and by using modules instead of ActiveX components you can strive to develop pages that are platform independent. Point out to your boss that by doing this you have the ability in the future to switch platforms without having to worry about rewriting an entire codebase. Some minor tweaks, and away you go.

Consider also that to derive most solutions in the evil empire's language (VBScript) you have to pay for components to do simple things like sending mail (where in PerlScript you have all of CPAN). You have to resort to keyboard gymnastics to something as simple as opening a file (create a filesystem object...) or assigning a value to a hash (create a dictionary object...)



ryddler

In reply to Re: Friends don't let friends use ASP? by ryddler
in thread Friends don't let friends use ASP? by emilford

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.