Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <%--
  2. Document : index
  3. Created on : Sep 17, 2019, 4:30:02 PM
  4. Author : user
  5. --%>
  6.  
  7. <%@page contentType="text/html" pageEncoding="UTF-8"%>
  8. <!DOCTYPE html>
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  12. <title>JSP Page</title>
  13. </head>
  14. <body>
  15. <form action="doLogin.do" method="post">
  16. nama : <input type="text" name="nama" id="nama"> <br>
  17. umur : <input type="text" name="umur" id="umur"> <br>
  18. <input type="submit" value="Next">
  19. </form>
  20.  
  21. <br/> <br/><font color="red">
  22. <%
  23. String err = (String) request.getAttribute("err");
  24. if(err != null){
  25. out.println(err);
  26. }
  27. %>
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement