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
Can we call the constructor of a class more than once for an object?
What is the purpose of static methods and static variables?
Is age discrete or continuous?
What are the steps involved to create a bean?
What do you understand by the term singleton?
Write code to implement bubble sort in java?
Explain importance of finally block in java?
Can substring create new object?
Why 1 is not a prime number?
Why main function is static?
What is :: operator in java 8?
This abstract class is correct ? abstract class A { public abstract void Disp(); public abstract void B() { } public absract virtual C() { } }
Why is string class considered immutable?
What is multithreading and its advantages?
What is anti pattern in programming?