Advertisement
Guest User

Untitled

a guest
Jun 5th, 2015
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1.     <form:form modelAttribute="songs">
  2.             <c:forEach items="${songs}" var="song" varStatus="i">
  3.               <form:input path="songs[${i.index}].value" value = "${song}"></form:input>
  4.                   <br>
  5.             </c:forEach>
  6.             <br>
  7.             <input type="submit" value="Submit" />
  8.         </form:form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement