
February 4th, 2013, 02:49 PM
|
 |
Contributing User
|
|
Join Date: May 2004
Location: Superior, CO, USA
|
|
Are you familiar with JSP's?
Basically you should avoid putting anything that is directly display related in a Servlet and have the JSP do the display work. If you need to have dynamic stuff either code it in the JSP (but don't go the other way where your JSP contains code logic) or use a Servlet with, for example, data in the session, to get your data out.
__________________
Need Java help? Want to help people who do? Sit down with a cup of Java at the hotjoe forums.
|