I agree with Your Mother (what a name) below, “never” is a bit long.
With fat- or rich clients I mean for example a C++/Visual Basic application. You can create great GUI’s in it and you compile it into an executable that resides on the client (in general, there are other architectures possible).
With the thin client most of the processing is done on the server side, for example the web server. The server processes the user input and returns html to the clients’ browser (again in general and simplified). So the only thing a client needs is a web browser.
You can enrich a thin client to behave like a fat client so you can use Perl/CGI to make flashy applications. Keep in mind that it takes effort though. How big is your application? How many screens do you foresee? How complex is the User Interface logic? Are you proficient in JavaScript/CSS?
Frameworks based on MVC definitely have a learning curve (I am with Your Mother again). If your application is simple, not too big, it might be overkill, like trying to shoot a mosquito with a canon. That’s why I said you need a certain “critical mass” before you go MVC.
Cheers,
dHarry
|