Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


how to connect one jsp page to another jsp page????

Answers were Sorted based on User's Feedback



how to connect one jsp page to another jsp page????..

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

how to connect one jsp page to another jsp page????..

Answer / manoj

by using forward directive

Is This Answer Correct ?    71 Yes 26 No

how to connect one jsp page to another jsp page????..

Answer / srividya eeswar

<a
href="<%=request.getContextPath()%>/anotherjspname.jsp">Link</a>

Is This Answer Correct ?    54 Yes 19 No

how to connect one jsp page to another jsp page????..

Answer / deepak divvela

<%
RequestDispatcher rd=sc.getRequestDispatcher("a.jsp");
rd.forward(req,res);
%>

Is This Answer Correct ?    35 Yes 26 No

how to connect one jsp page to another jsp page????..

Answer / krunal patel

response.sendRedirect("xyz.jsp");

Is This Answer Correct ?    19 Yes 19 No

how to connect one jsp page to another jsp page????..

Answer / koushik

<%
RequestDispatcher rd=sc.getRequestDispatcher("a.jsp");
rd.forward(req,res);
%>

Is This Answer Correct ?    23 Yes 24 No

Post New Answer

More Core Java Interview Questions

How can you make a class serializable in java?

0 Answers  


Why is serialization required?

0 Answers  


Can I extend singleton class in java?

0 Answers  


What is the multi-catch block in java?

0 Answers  


what is type of statement in jdbc connection?

3 Answers  


What is slash r?

0 Answers  


What is return data type?

0 Answers  


What about interthread communication and how it takes place in java?

0 Answers  


What is the purpose of a volatile variable?

0 Answers  


Can we override singleton class?

0 Answers  


Is a string literal?

0 Answers  


Can an interface extend another interface?

0 Answers  


Categories