in how many way can we redirect to next jsp page from one page to another page apart from following two ways,
RequestDispatcher rd = request.getRequestDispatcher("MyPage.jsp");
rd.forward(request, response);
and
response.sendRedirect("MyPage.jsp");
when i go to second page(MyPage.jsp) it has to load as fresh page from server side,