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

What is the importance of main method in Java?

0 Answers  


How many types of string data types are there?

0 Answers  


What is the difference between conversation & casting?

0 Answers  


What is the difference between class & structure?

0 Answers  


What is continuity of a function?

0 Answers  


what is purpose of writting public static void main(Strind arg[]) in java..?

4 Answers   ITC Infotech,


What are the steps that are followed when two computers connect through tcp?

0 Answers  


class A { public void disp(int a,int b) { System.out.println("hai"); } } class B { public void disp(int a,int b,int c) { System.out.println("hai"); } } above program is overloading or overriding?

9 Answers   Infosys, Wipro,


What do you mean by light weight and heavy weight components?

0 Answers  


What is a literal coding?

0 Answers  


What is oops in java?

0 Answers  


What is unicode?

5 Answers  


Categories