Galera estou tendo o seguinte erro :
[quote]2006-12-28 11:39:18,656 ERROR [org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/portal].[action]] Servlet.service() for servlet action threw exception
javax.servlet.jsp.JspException: ServletException in ‘/WEB-INF/pages/admin/templates/default/forum/forumList.jsp’: /WEB-INF/pages/admin/templates/default/forum/forumList.jsp(63,0) The end tag “</html:form” is unbalanced
[/quote]:
Com o Codigo abaixo :
[code]<html:form action="/doForum">
<html:hidden property=“name” value=“findAll”/>
<html:hidden property=“page”/>
<iu:iconMenu newImg="${images}new.gif" newUrl="${urlParam}showPortalRegister.k?oId=${param.oId}&oName=${param.oName}&popup=${param.popup}"
doSearchImg="${images}doSearch.gif"
helpImg="${images}help.gif" helpUrl="javascript:;"/>
<tag:messageTable bundle="portal-param"/>
<tag:searchResult resultKey="label.list.result"
noResultKey="label.list.noresult"
pageController="${pageController}"
collection="${forum}"
bundle="application">
<table width="100%" border="1" cellspacing="0" cellpadding="4" class="tableTitle">
<tr>
<td width="25"></td>
<td width="70"><bean:message key="forum.label.id" /></td>
<td width="150"><bean:message key="forum.label.name"/></td>
<td><bean:message key="forum.label.description"/></td>
<td width="30"></td>
</tr>
<logic:iterate id="forums" name="forum">
<c:set var="forumI" value="${forums}" scope="request"/>
<tr class="searchTableResult" onmouseover="this.className='searchTableResult2';" onmouseout="this.className='searchTableResult';">
<td width="25" align="center">
<html:link action="????" paramId="id" paramName="group" paramProperty="id">
<img src="miniUpdate.gif" alt="<bean:message key='label.update' bundle='application'/>" border=0>
</html:link>
</td>
<td width="70">${forum.id}</td>
<td width="150">${forum.name}</td>
<td>${forum.description}</td>
</tr>
</logic:iterate>
</table>
</html:form>
[/code]
Pelo que itendi ele esta dizendo que naum estou fexhamdo o </html:form> , mais eu estou … alguem pode me ajudar ?
