admin_invalid.jsp 974 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"%>
  2. <%@ include file="/base.jsp" %>
  3. <html>
  4. <head>
  5. <meta http-equiv="Pragma" content="no-cache">
  6. <title>提示窗口</title>
  7. <style>
  8. <!--
  9. body {
  10. background-color: #ffffff;
  11. }
  12. td { font-size: 12px;}
  13. -->
  14. </style>
  15. </head>
  16. <body>
  17. <div style="margin-top: 150px;">
  18. <table align="center" border="0" width="300" cellspacing="0"cellpadding="0" height="200">
  19. <tr>
  20. <td background="<%=request.getContextPath()%>/static/common/admin/images/good.jpg">
  21. <table align="right" cellspacing="0"cellpadding="0" width="200" height="200" border="0" style="margin-right: 3px;">
  22. <tr>
  23. <td height="115">
  24. <div>
  25. 操作不允许!原因为<c:out value="message" /> <br/><a href="###" onclick="javascript:history.go(-1);">返回</a>!
  26. </td>
  27. </tr>
  28. <tr>
  29. <td height="62">
  30. </td>
  31. </tr>
  32. </table>
  33. </td>
  34. </tr>
  35. </table>
  36. </div>
  37. </body>
  38. </html>