One major advantage is that you can easily separate page logic from page
presentation.  If you are building a web site with a team of programmers and
designers, you would like each to work relatively independent of the other.
JSP allows the designers to layout a page and later plug in logic.

For example
<!-- This bean will do some complex logging -->
<jsp:useBean name="logger" class="com.mycom.LoggerBean" scope="session" />

<!-- The rest is just html -->
<html>

===========================================================================
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff JSP-INTEREST".  For general help, send email to
[EMAIL PROTECTED] and include in the body of the message "help".

Reply via email to