In my jsp i've a code like this:

<logic:iterate id="index" name="list" type="myList">
 <c:url value="/myAction.do" var="url1">                        
  <c:param name="id"><bean:write name="index" property="id" /></c:param>
  <c:param name="year"><bean:write name="index" property="year"
/></c:param>
 </c:url>
<logic:iterate>

The code works good. But the generated url are in this form:

http://localhost:8080/myApp/myAction.do?id=161298&year=2005

Instead of 

http://localhost:8080/myApp/myAction.do?id=161298&amp;year=2005

As required by the DTD declared (xhtml 1.0 strict)

Does anybody have some idea to get the right url parameter separator
(&->&amp;) ?
Thanks in advance.
Marcello


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to