Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.  
  2. <%@include file="header.jsp" %>
  3. <div class="container">
  4. <h3>Form Edit Mahasiswa</h3>
  5. <form class="form-horizontal" method="post" action="proses-edit-mhs.jsp">
  6. <%
  7. try
  8. {
  9. client.siakad.Mahasiswa_Service service = new client.siakad.Mahasiswa_Service();
  10. client.siakad.Mahasiswa port = service.getMahasiswaPort();
  11. int nim = Integer.valueOf(request.getParameter("nim"));
  12. java.util.List<java.lang.Object> result = port.getMahasiswa(nim);
  13. for (int i = 0; i < result.size(); i++)
  14. {
  15. out.println(result.get(i));
  16. }
  17. }
  18. catch (Exception ex)
  19. { }
  20. %>
  21. <button type="submit" class="btn btn-danger">Edit</button>
  22. </form>
  23. </div>
  24. <%@include file="footer.jsp" %>