guys, I want to pass values from one html page to another. In test1.html, submit the value to Serlvet. In servlet got the value, and dispatcher request to test2.html. like this:
request.setAttribute("url", url);
request.getRequestDispatcher("test2.html").forward(request,reponse);
So, how can i get the "url" value in test2.html?. need help, thx!