how to connect one jsp page to another jsp page????
Answer Posted / murali
we can forward a request from one jsp to anothe JSP in the
following ways:
1.include directive i.e <%@ include file="xxx.jsp" %>
2.jsp:include action tag i.e <jsp:include page="/xxx.jsp"%>
3.jsp:forward action tag i.e <jsp:forward page="/xxx.jsp"%>
| Is This Answer Correct ? | 85 Yes | 24 No |
Post New Answer View All Answers
Where are global variables stored?
Why put method is used?
Can a class be private?
Make a data structure and implement an algorithm to print all the files in a directory. (The root directory can have sub-directories too.)
What is unicode with example?
What is the difference between equals() and == in java?
What will be the default values of all the elements of an array defined as an instance variable?
What are methods and how are they defined?
Difference between notify() method and notifyall() method in java?
What is class variable java?
What is skeleton and stub?
What is factor r?
what is the swingutilities.invokelater(runnable) method for? : Java thread
What is difference between adapter class and listener?
What is the purpose of garbage collection in java?