If multiple entries in a list box are selected, how can these selected values be accessed from the Servlet Request? Would the selection come as an array?
when u get the value from a multiple selected list box it will all selected values with a delimiter as ','. such that u can use stringtokenizer and divide the parts hope it will work.. bye, Rajesh Jhaver
You can also use the getParameterValues() function call in the javax.servlet.http.HttpServletRequest (inherited from javax.servlet.ServletRequest). Using this call will return an array of Strings which is nice and clean .