how can i post one parameter into third page via second page in jsp
jsp discussion
Collapse
X
-
Are all those 3 jsp's a part of the same session? Is it an object that you are trying to post from one jsp to another?Originally posted by Nimayhow can i post one parameter into third page via second page in jsp
If yes the you can perhaps bind the concerned object variable to the session as a session attribute using setAttribute();
This way you can retrieve the set value in any of the jsp's saying getAttribute();
Comment