Guest User

Untitled

a guest
Aug 19th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. <!-- This will return an id but iterate over each recipe and display its name in a dropdown -->
  2. <select name="id">
  3.     <c:forEach var="recipe" items="${recipes }">
  4.         <option value="${recipe.idRecipies }">${recipe.name }</option>
  5.     </c:forEach>
  6. </select>
Add Comment
Please, Sign In to add comment