e-500.jsp 625 B

12345678910111213141516171819
  1. <%@ page contentType="text/html; charset=UTF-8"%>
  2. <%
  3. String path = request.getContextPath();
  4. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  5. %>
  6. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  7. <html>
  8. <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><title>500!</title></head>
  9. <body>
  10. <img src="<%=basePath %>/resource/images/error.png"></img>
  11. <H2>500error!</H2>
  12. <hr />
  13. <P>错误描述:</P>
  14. 该页无法显示!请不要非正常访问<br />
  15. 请与系统管理员联系!
  16. <P>错误信息:</P>
  17. 该页无法显示!
  18. </body>
  19. </html>