I am trying to pass a value from one jsp page to another.For simplicity in my example the pages are pg1.jsp and pg2.jspIn pg1.jsp I do as follows.HttpSessionContext sc=request.getSession().getSessionContext();request.setAttribute("name", "clive");String pg2 ="pg2.jsp";RequestDispatcher pg2Dispatcher...