how to connect one jsp page to another jsp page????
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / srividya eeswar
<a
href="<%=request.getContextPath()%>/anotherjspname.jsp">Link</a>
| Is This Answer Correct ? | 54 Yes | 19 No |
Answer / deepak divvela
<%
RequestDispatcher rd=sc.getRequestDispatcher("a.jsp");
rd.forward(req,res);
%>
| Is This Answer Correct ? | 35 Yes | 26 No |
Answer / koushik
<%
RequestDispatcher rd=sc.getRequestDispatcher("a.jsp");
rd.forward(req,res);
%>
| Is This Answer Correct ? | 23 Yes | 24 No |
types of applets?.
what are the major differences between jdk1.4 and jdk1.5?
2 Answers Cap Gemini, Crimson Logic, Infosys, TCS, Tenth Planet,
Whats the difference between notify() and notifyall()?
Explain reverse a linked list iterative solution in java?
What is difference in between java class and bean?
how to get the max salary and name of employee from arraylist without using the Comperator or even Comparable interface?
How do you create immutable object in java?
What is the function of log?
Can static methods be inherited?
Give differences between Quicksort & Mergesort. When should these sorts be used and what is their running time?
How do you add an element to a hashset in java?
Is stringwriter thread safe?