> My question is... Firstly, I will explain what I need. In PHP and Perl I was using a > module, called FastTemplate. It's a tool which helps separating design from programming > logic. Template is stored in a separate HTML file, and has some "dynamic" areas and blocks > - they can be substituted with certain values by application. Where should I start > searching for such library, and is it possible to find such anywhere?
JSP is broadly equivalent to PHP. You can do "dynamic" areas and blocks with JSP. A design pattern that many people like is to recieve requests via a servlet, have the servlet process them and then pass on the request to a JSP page for presentation. There are many examples of this on the web and much discussion in the archives of this mailing list. Nic ___________________________________________________________________________ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET-INTEREST". Archives: http://archives.java.sun.com/archives/servlet-interest.html Resources: http://java.sun.com/products/servlet/external-resources.html LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
