Java Servlets

Handling POST



public void doPost(HttpServletRequest req, HttpServletResponse res)
  throws ServletException, IOException {

  doGet(req, res);
}

José M. Vidal .

12 of 89