Please can people help me with the way RequestDispatcher works in detail...
what will be the output of the following--->
1: out.println("Hello include");
request.getRequstDispatcher("myjsp.jsp").include(request,response);
out.println("include continued");
i want to know what happens to the code before and after we call include on requestdispatcher.............
2: out.println("Hello forward");
request.getRequstDispatcher("myjsp.jsp").forward(request,response);
out.println("forward continued");
i want to know what happens to the code before and after we call forward on requestdispatcher.............
Thank you all