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
What is a method header?
What is the purpose of tostring() method in java?
Why is flag used in java?
How do you call a reference in java?
Is 64bit faster than 32 bit?
What are the characteristics of java?
How do you override a variable in java?
Is java call by value?
What is return type in java?
When a thread is executing synchronized methods , then is it possible to execute other synchronized methods simultaneously by other threads?
What is json parser in java?
What is broken and continue statement?
What do you mean by checked exceptions?
What is a java object and java application?
Explain about static nested classes in java?