jsp discussion

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Nimay
    New Member
    • Feb 2007
    • 1

    #1

    jsp discussion

    how can i post one parameter into third page via second page in jsp
  • abctech
    New Member
    • Dec 2006
    • 157

    #2
    Originally posted by Nimay
    how can i post one parameter into third page via second page in jsp
    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?

    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

    • hirak1984
      Contributor
      • Jan 2007
      • 316

      #3
      can you please put some more details nimay?



      Originally posted by Nimay
      how can i post one parameter into third page via second page in jsp

      Comment

      • r035198x
        MVP
        • Sep 2006
        • 13225

        #4
        Originally posted by Nimay
        how can i post one parameter into third page via second page in jsp
        Read about getAttribute, getParameter and using hidden input fields.

        Comment

        Working...