in reply to cgi and asp
CGI is easy to suid (i.e. run as the user who owns the script - which provides better security on shared systems), but launches a new instance of the Perl interpretor for every request.
ASP keeps the PerlScript interpretor in memory so is faster, but tends towards the mixing of Perl and Markup.
asp.NET I can't comment on. I didn't even know that you could use Perl in it.
mod_perl would be my preference. It keeps the Perl interpretor in memory, doesn't encourage you to mix Markup and Perl. It is also, as far as I know, used a lot more then ASP/PerlScript, so it is more mature and better supported.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: cgi and asp
by gellyfish (Monsignor) on Feb 21, 2005 at 11:50 UTC | |
by Jenda (Abbot) on Feb 21, 2005 at 22:48 UTC |