How do u pass data from one jsp to another jsp?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / soumyojit chakraborty
This can be done by using an implicit object in jsp, called
session. Sessions are set using Session.setAttribute() and
retrieved in another jsp using Session.getAttribute().
Is This Answer Correct ? | 13 Yes | 0 No |
Answer / sreedhar
In that jsp we can pass the values one page two another
page four ways:
1)Hidden form fields
2)session
3)query String
4)request Object
Is This Answer Correct ? | 10 Yes | 1 No |
What is onClassLoader in java?
How do you create a sop?
Difference between serialization and deserialization in java?
Why java doesn’t support multiple inheritances?
Explain JPA in Java.
What is the covariant return type?
What is the difference between C++ & Java?
78 Answers College School Exams Tests, HAL, SUN, Syntel, TCS, Wipro,
What is locale?
Can we override protected method in java?
what are the jsp tags with example?
What is the difference between pageContext and page implicit objects in jsp?
9 Answers Gspann Technologies, Merrill Lynch, Polaris,
How the threads are synchronized?