> > The biggest program is taglibs within logic:iterate if you try something > > like: > > <logic:iterate ...><tr><td><bean:message /></td></tr></logic:iterate> > > > > instead of: > > <logic:iterate ...> > > <tr><td><bean:message /></td></tr> > > </logic:iterate> > > > > You will find you get a lot fewer blank lines. > Then you have totally unreadable and unmanageable html.
The key here is using the end carrot trick as mentioned above. It seems to me to be the quickest solution to the issue, namely: <logic:iterate ><tr><td><bean:write /></td></tr ></logic:iterate> But yeah, that is ugly. The sweetest solution would be to wrap the whole page in an html tidy taglib which will callback the whole page into a formatter. The problem with that is that you lose all output buffering. Ideal, the JSP engine would look for a preceding "\n" if it find a jsp tag and clip it with the jsp tag. So again, not a struts issue. Dan -- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Daniel Allen, <[EMAIL PROTECTED]> http://www.mojavelinux.com/ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "When you're raised by the Jesuits, you become either obedient or impertinent" -- Jack McCoy, "Law and Order" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

