I have n number of text fields named in the form \"Question.....\". How can I get all the parameters which starts with \"question\" from the JSP page to the Action?
<%@ page import = "java.util.Map" %> Map parameters = request.getParameterMap(); for(String parameter : parameters.keySet()) { if(parameter.toLowerCase().startsWith("question")) { String[] values = parameters.get(parameter); //your code here } }