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 do you mean by hashing?
Does java list allow null?
What is the difference between post and put?
What is the method to expand and collapse nodes in a jtree?
can java object be locked down for exclusive use by a given thread? : Java thread
How can you read an integer value from the keyword when the application is runtime in java? example?
How to create an immutable class?
Is array synchronized in java?
How can an exception be thrown manually by a programmer?
Can a main method be declared final?
what methods would you overwrite in java.lang.object class?
Can we write class inside a class in java?
What is extension method in java?
What are the two ways in which thread can be created?
What does this () mean in constructor chaining concept?