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 oops in java?
Explain reverse a linked list recursive java solution?
What is a numeric string?
Does every java program need a main?
What do you mean by pointer value and address?
What is a class variable?
What is a java developer salary?
What is basic syntax?
Is arraylist an object in java?
What is assembly used for?
What is exception hierarchy in java?
What is the difference between scrollbar and scrollpane?
If you do not want your class to be inherited by any other class. What would you do?
What is the difference between a loader and a compiler?
What is the difference between comparison done by equals method and == operator?