Sonu,
Make two changes in your code, it will definitely work..
1. Add the following line in your Action Class:
request.setAttribute("myForm",myForm);
2. Modify the JSP code
Hope it helps.
Thanks & Regards
Sunil Sahu
Sonu S <[EMAIL PROTECTED]
First thing you have to set your form object in either session or
request by in action classs
if("request".equals(mapping.getScope())) {
request.setAttribute(mapping.getAttribute(),form);
}else {
request.getSession().setAttribute(mapping.getAttribute(),
form)
2 matches
Mail list logo