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


Please Help Members By Posting Answers For Below Questions

What is the buffer limit?

558


Can we use synchronized block for primitives?

602


Where is singleton pattern used?

523


What is meant by tab pans?

648


What is the difference between compiler and jvm?

551






Does sprintf add a null terminator?

559


What is the benefit of singleton pattern?

526


What is the final variable?

581


What is the difference between the Reader/Writer class hierarchy and the InputStream/OutputStream class hierarchy?

623


Which method you will use to create a new file to store some log data. Each time a new log entry is necessary, write string to the file in java ?

633


What is the benefit of abstract class?

513


What are methods?

550


What do you mean by append?

534


What is the difference between checked exception and unchecked exception?

526


Write a regular expression to validate a password. A password must start with an alphabet and followed by alphanumeric characters; its length must be in between 8 to 20.

588