I have several forms that give the data to the doPost and I need to determine within which doPost from which form the data came from.
// тут id <form method="POST" action="UserServlet"> <input type="number" name="id"><br> <input type="submit" value="submit"> </form> // а тут name <form method="POST" action="UserServlet"> <input type="text" name="name"><br> <input type="submit" value="submit"> </form> @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { req.?????() //Вот тут как-то определить от какой формы пришло } How can I find out which form the data came from if there are several of them in one jsp .
And if the forms on different jsp but use one doPost ?