how i get scripting variable value in another jsp page

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • pronodeep
    New Member
    • May 2014
    • 1

    how i get scripting variable value in another jsp page

    i m using this code..
    Code:
    function OnSelectionChange(select) 
                 {
                var selectedOption = select.options[select.selectedIndex];
                alert ("The selected option is " + selectedOption.value);
     	                  }
    i want get the selectedOption value in another jsp page. how can i get this value pls help me
    Last edited by Dormilich; May 28 '14, 01:04 PM. Reason: please use [CODE] [/CODE] tags when posting code
  • Dormilich
    Recognized Expert Expert
    • Aug 2008
    • 8694

    #2
    it depends on how the pages are related.

    generally, since JSP is a server language you need to explicitly send the data over.

    Comment

    Working...