org.apache.jasper.JasperException:/index.jsp(35,2) The end tag "</html:form" is unbalanced
Possible solution: Usually it's caused by no tag closure ("/>") in struts tags some where before "</html:form>". Like, <img src=""...>, we should close the img tag like, <img src="".. />
|