In Action class, I have set one parameter in request scope using request.setAtrribute("status","true");
Now it is forwarded to one
jsp, in that i tried to retrieve the parameter using
request.getAtribute("status");
but i am getting that parameter as null in request scope of jsp.
it is not redirected it is simply forwarded to that jsp.
is it that the new request being created when forwared to jsp?
what should be the possible reason behind it.?
if i used session Atrribute it is working fine.