ParametersInterceptor Error: Unexpected Exception Caught, Error Setting Expression March 03, 2023 Post a Comment I have a table inside a form that contains dropdowns and a hidden input. JSP: Solution 1: You don't need to submit all ids of the table. Because you don't want to convert profId to a list or array. Use a separate form for each record. <table> <thead class="center"> <tr> <!-- column names here --> </tr> </thead> <tbody> <c:forEach var="professor" items="${facultyList}"> <tr><td> <form action="modifyfaculty" method="post"> <table> <tr> <!-- more <td> --> <td align="center"> <c:choose> <c:when test="${professor.profEmplStatus.equals('FULL')}"> <select name="profEmplStatus" required> <option value="FULL" selected>FULL</option> <option value="PART">PART</option> <option value="RET">RET</option> <option value="TRMTD">TRMTD</option> </select> </c:when> <!-- more <c:when> blocks --> </c:choose> </td> <td align="center"> <c:choose> <c:when test="${professor.profDept.equals('BSCS-SE')}"> <select name="profDept" required> <option value="BA-MMA">BA-MMA</option> <option value="BFDT">BFDT</option> <option value="BS-AN">BS-AN</option> <option value="BS-GPD">BS-GPD</option> <option value="BSBA-FM">BSBA-FM</option> <option value="BSBA-MKT">BSBA-MKT</option> <option value="BSCS-SE" selected>BSCS-SE</option> <option value="BSIT-WD">BSIT-WD</option> <option value="GENED">GENED</option> </select> </c:when> <!-- more <c:when> blocks --> </c:choose> </td> <td class="center"> <input type="hidden" name="profId" value="${professor.profId}" /> <input type="submit" value="Save" /> </td> </tr> </table> </form> </td></tr> </c:forEach> </tbody> </table> Copy Share You may like these postsLinking Html To Jsp PageHow Do I Create A Global Jsp Variable That I Can Access Across Multiple Pages Or Inside Frames/iframes?Struts 2/ Foundation 5 - Modeldriven Class And File UploadUploading Multiple File Formats To A Server Using Jsp And Store The Path In Database Post a Comment for "ParametersInterceptor Error: Unexpected Exception Caught, Error Setting Expression" As A Row I need your help, if the following code below counts every … How To Make A Transition Effect Up The Input On Change I need to place this particular effect on a dropdown I need… Some Questions About Tree Construction [html Spec] I know that it's not customary to ask a bunch of questi… December 2024 (1) November 2024 (37) October 2024 (60) September 2024 (16) August 2024 (364) July 2024 (339) June 2024 (687) May 2024 (1293) April 2024 (775) March 2024 (1501) February 2024 (1648) January 2024 (1335) December 2023 (1303) November 2023 (376) October 2023 (556) September 2023 (310) August 2023 (324) July 2023 (279) June 2023 (360) May 2023 (215) April 2023 (145) March 2023 (139) February 2023 (171) January 2023 (271) December 2022 (139) November 2022 (223) October 2022 (176) September 2022 (159) August 2022 (293) July 2022 (82)