Error in JSP FIle
[nobr]i have developed a HelloWorld Application using Struts FrameWork & i m using JRun application Server .. when i deployed the HelloWorld on server i hve found following Error Message
......................................................................................
1 error(s) found in /hello.jsp
(6) The html tag does not have a locale attribute
......................................................................................
while my hello.jsp file is following
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<html:html locale="true">
<head>
<title><bean:message key="hello.jsp.title"/></title>
<html:base/>
</head>
<body bgcolor="white">
<h2><bean:message key="hello.jsp.page.heading"/></h2>
<html:errors/>
<logic:present name="examples.hello" scope="request">
<h2>
Hello <bean:write name="examples.hello" property="person" />!
</h2>
</logic:present>
<html:form action="/HelloWorld.do?action=gotName" focus="username" >
<bean:message key="hello.jsp.prompt.person"/>
<html:text property="person" size="16" maxlength="16"/><br>
<html:submit property="submit" value="Submit"/>
<html:reset/>
</html:form><br>
<html:img page="/struts-power.gif" alt="Powered by Struts"/>
</body>
</html:html>
Although i have supplied all of the necessary files to the server
can any body guide me regarding this
thx in Adv
Regrads
Abrar[/nobr]

