2008/10/7 Rusty Wright <[EMAIL PROTECTED]>: > My jsp fragments that Tiles is inserting start with the following: >l > <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> > > And then immediately after that use html/jsp like the following: > > <ol class="menu"> > <li> > <a href="search.zug">Search for a person</a> > </li> > ... > > This may be a silly/simple question, but can I add something to the top of > the jsp fragments so that they're well formed xml and jsp, and not break > tiles?
In fact no, Tiles allows the reuse of *pieces* of pages, so they don't have to be well formed (but the constructed pages does). About JSP-well-formedness, the JSP pages have to be well-formed as usual. Are you talking about the JSP/XML style? Antonio
