Click here to Skip to main content
15,886,199 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
I have created login page for struts application as follow,

HTML
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Login page | Hello World Struts application in Eclipse</title>
</head>
<body>

<h1>Login</h1>
    <html:form action="login">
         <bean:message key="label.username" />
         UserName:<html:text property="userName" />
         <html:errors property="userName" />
         <br/>
         <bean:message key="label.password"/>
         Passworld:<html:password property="password" />
         <html:errors property="password"/>
        <html:submit>Login</html:submit>
        <html:reset>Reset</html:reset>
    </html:form>

</body>


My problem is when it runs textboxes and submit and reset buttons are not visible. can you plese tell me why?
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900