Multiple choice technology programming languages How will you pass values from HTML page to the Servlet? response.setparameter () method response.getparameter () method request.setparameter () method request.getparameter () method Reveal answer Fill a bubble to check yourself D Correct answer Explanation To retrieve values from an HTML form, use request.getParameter() on the HttpServletRequest object. There is no setParameter() method on request, and response is for sending data back to the client, not receiving it.