Guest User

Untitled

a guest
Mar 24th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  3. <html>
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  6. <title>All Photos</title>
  7. </head>
  8. <body>
  9. <form action="/photos/deletePhotos">
  10. <c:forEach var="photo" items="${photoList}">
  11. <p><input type="checkbox" name="id" value="${photo.key}">${photo.key}</p>
  12. <img src="/photos/photo/${photo.key}" width="300" height="200">
  13. <br/><br/>
  14. </c:forEach>
  15. <input type="submit" value="Delete" />
  16. </form>
  17.  
  18. </body>
  19. </html>
  20.  
  21. @RequestMapping("/deletePhotos")
  22. public ModelAndView deleteSomePhotos(@PathVariable(name = "id", required = false) long[] id) {
  23. System.out.println(id);
  24. return new ModelAndView("all", "photoList", photos);
  25. }
Add Comment
Please, Sign In to add comment