Accessing Selected Dropdown Items Using Java January 30, 2024 Post a Comment I have a dropdown which consist the language names. I am setting the value and displaying name of the dropdown by using a hashmap. Solution 1: update your jsp likewise,<form...> ... <inputtype="hidden"name="code"value = <%= name%>/> .... </form>Copythen get it from your servlet likewise, request.getParameter("code"); // will return value of codeCopyNOTE :Remove from your jsp-code if above solution you gonna implement then, request.setAttribute("code", name); Copy Share Post a Comment for "Accessing Selected Dropdown Items Using Java"
Post a Comment for "Accessing Selected Dropdown Items Using Java"