How to place the data on a web page received by the Request Dispatcher include() on a specific location?
Eg.
RequestDispatcher rd=request.getRequestDispatcher("index.jsp");
out.println("Hello");
rd.include(request, response);

Here Hello is placed even over the <html> tag if we see the source.