Suppose I have 10 buttons and after pressing submit I want to send the value of that button to control servlet I did like this:In HTML-page\[code\]<body> <form action="test" method="get"> <input type="button" name="dfhgdh" value="http://stackoverflow.com/questions/14561522/uiui" /> <input type="button" value="http://stackoverflow.com/questions/14561522/uiui" name="dfhgdh" /> <input type="button" value="http://stackoverflow.com/questions/14561522/dghdh" name="dfhgdh" /> <input type="button" value="http://stackoverflow.com/questions/14561522/dthydt" name="dfhgdh" /> <input type="submit" value="http://stackoverflow.com/questions/14561522/submit" name="fuyjuf" /> </form></body>\[/code\]And in Control-servlet\[code\]Protected void processRequest(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException{ response.setContentType("text/html;charset=UTF-8"); PrintWriter out = response.getWriter(); String mn =request.getParameter("dfhgdh"); System.out.println(mn); }\[/code\]Can any body tell where 'm going wrong?