How do u pass data from one jsp to another jsp?
Answer Posted / shaik syed basha
You can pass parameter names and values to the target file
by using a <jsp:param> clause. An example of this would be
passing the parameter name username (with name="username")
and the value scott (with value="scott") to a servlet login
file as part of the request. If you use <jsp:param>, the
target file should be a dynamic file that can handle the
parameters.
Is This Answer Correct ? | 19 Yes | 3 No |
Post New Answer View All Answers
What are the uses of synchronized keyword?
How do you sort arraylist in descending order?
How many boolean functions are there?
Is it correct to say that due to garbage collection feature in java, a java program never goes out of memory?
Have you ever used hashtable and dictionary?
Why does the integer quotient -0/3 yield 0, but the double quotient -0.0/3.0 yields – 0.0?
What are the topics in advance java?
What is java string pool?
How do singleton patterns work?
What is OOP's Terms with explanation?
What is identifier give example?
Define inheritance?
What is the benefit of singleton pattern?
Can we execute java program without main method?
How can you add and remove nodes in jtree?