Hi,
i have a login page and on its action i have populated 2 different form beans and added each to request as follows,
request.setAttribute("programeDetails", programDetails);
request.setAttribute("userDetails", loginBean);
and its being used in the next
JSP (SubmitForm.jsp) page to show values of those form beans.
but when i make use of server side validation and redirect to the same page (SubmitForm.jsp) the beans added to request will get nullified and hence error comes ....
Pls give any suggestion...