error500.jsp 570 B

12345678910111213141516171819202122232425
  1. <%--
  2. Created by IntelliJ IDEA.
  3. User: x'b'w
  4. Date: 2021/7/1
  5. Time: 15:42
  6. To change this template use File | Settings | File Templates.
  7. --%>
  8. <%@ page contentType="text/html;charset=UTF-8" language="java" %>
  9. <html>
  10. <head>
  11. <title>Title</title>
  12. <style>
  13. .shouye {
  14. text-decoration: none;
  15. width: 200px;
  16. height: 100px;
  17. text-align: center;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <h1>当前程序出现错误!</h1>
  23. <a href="index.jsp" class="shouye">返回首页</a>
  24. </body>
  25. </html>