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 is meant by final class?
Can you start a thread twice in Java?
What is the use of math abs in java?
Why packages are used?
What is function overriding and overloading in java?
What is java util function?
How do you bind variables?
What things should be kept in mind while creating your own exceptions in java?
Explain the importance of import keyword in java?
Compare overloading and overriding?
Why is a constant variable important?
What is the multi-catch block in java?
If a variable is declared as private, where may the variable be accessed?
What is the difference between length and length() method in java?
Are the imports checked for validity at compile time? Will the code containing an import such as java.lang.abcd compile?