Re: Tiles exceeding JSP size limit

2002-07-18 Thread Cedric Dumoulin
Hello, The JSP size limit is per page, not per request. You should be able to split a little bit more the faulty page/tiles, using tiles insert ... to stay coherent with your approach, or jsp:include Also, considering using less tags is a good option (like options ... instead of

RE: Tiles exceeding JSP size limit

2002-07-17 Thread Martin Cooper
One option (pardon the pun!) is to use the html:options tag instead of using many separate html:option tags. That would be my first choice. Another alternative is to split the page up into multiple JSP pages, and reconstruct the page using jsp:include. -- Martin Cooper -Original

RE: Tiles exceeding JSP size limit

2002-07-17 Thread Jerry Jalenak
at the html:options tag and see if it will work for me Thanks! Jerry -Original Message- From: Martin Cooper [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 17, 2002 2:44 PM To: 'Struts Users Mailing List' Subject: RE: Tiles exceeding JSP size limit One option (pardon the pun!) is to use

RE: Tiles exceeding JSP size limit

2002-07-17 Thread Greg Hess
- From: Jerry Jalenak [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 17, 2002 3:55 PM To: 'Struts Users Mailing List' Subject: RE: Tiles exceeding JSP size limit I've tried the second option, that of splitting the page up, but have had problems with it. We are basing all of our JSP on Tiles