in reply to Web design and Perl/CGI business logic programming
First of all web clients are supposed to be * thin * clients. Although you can beef things up they will never match a * fat/rich * client developed in C++/VB/... etc.
Nowadays the MVC pattern is common good for web development, MVC is a term used to describe how to separate a web application into:
There are several Perl modules around implementing the MVC pattern (google, Super Search...)
If you want your pages to look/behave better there are several options: use CSS (Cascading Style Sheets) and JavaScript to "enrich" the client but again don't overdo it. A web client should be a thin client.
UpdateThis site gives excellent examples of how not to do it:-)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Web design and Perl/CGI business logic programming
by Your Mother (Archbishop) on Aug 22, 2008 at 17:23 UTC | |
by vit (Friar) on Aug 22, 2008 at 21:12 UTC | |
by Your Mother (Archbishop) on Aug 23, 2008 at 01:04 UTC | |
|
Re^2: Web design and Perl/CGI business logic programming
by vit (Friar) on Aug 22, 2008 at 15:26 UTC | |
by dHarry (Abbot) on Aug 23, 2008 at 14:12 UTC |