The end tag "</html:html" is unbalanced>
[nobr]Hi All,
I am getting an error while trying to run the jsp in sun one app server.
org.apache.jasper.JasperException: /aswelcome.jsp(37,0) The end tag "</html:html" is unbalanced
Please have a look at the JSP file below.
><%@ taglib uri="/tags/struts-bean" prefix="bean" %>
<%@ taglib uri="/tags/struts-html" prefix="html" %>
html:html locale="true">
<head>
<title>application</title>
<html:base/>
</head>
<body bgcolor="white">
<h3> The eAM Application </h3>
<html:form action="/first" name="firstForm" type="form.Loginform">
<tr>
<td class="PSTEXT">
<bean:message key="app.empid"/>
<html:text property="name" />
</td>
</tr>
<br><br>
<tr>
<td class="PSTEXT">
<bean:message key="app.password"/>
<html:password property="password" />
</td>
</tr>
<tr>
<td>
<html:submit/>
</td>
</tr>
</html:form>
</body>
</html:html>
Please help .[/nobr]

