While submitting page from Html to Servlet, how can i determine the request type whether it is get/post [ February 09, 2007: Message edited by: Bear Bibeault ]
HttpServletRequest has a method called getMethod() Also, you can override both doPost and doGet from HttpServlet, so that the right method will be called for the right type.