Just like to add to what others have said... In VB,Java,.NET,etc the standard way of doing client/server is to have a "thick", native Windows client.

In Perl, Ruby, etc. the standard way is to make a Web application. The advantages are numerous, especially with a large user base (no need to install), and especially where you have some control over what browser they're using (make sure no one's using IE4).

With the advent of things such as Rich Text Edits, and AJAX (so long as it's used in a sensible manner) you no longer have a lot of restrictions in the complexity of your user interface.

The fact that you're running Win98 on your workstations is even more of an argument for thin client. You can push most of the processing to a big beefy, clustered, loadbalanced, etc. server running Linux (or Windows server if you must), and install nothing but a browser on the workstations. Any performance issues can be tuned in one place (i.e. the server's OS, the webserver, etc. which are designed to be configured in this manner).

I think once you've made the decision to go with a thin client, then the choice of language becomes much less of an issue.


In reply to Re: Any survey instruments in Perl? by Mutant
in thread Any survey instruments in Perl? by loomis53

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.