update_info.jsp 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <%@ page language="java" import="java.util.*" pageEncoding="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>
  9. <base href="<%=basePath%>">
  10. <title>My JSP 'update_info.jsp' starting page</title>
  11. <meta http-equiv="pragma" content="no-cache">
  12. <meta http-equiv="cache-control" content="no-cache">
  13. <meta http-equiv="expires" content="0">
  14. <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
  15. <meta http-equiv="description" content="This is my page">
  16. <!--
  17. <link rel="stylesheet" type="text/css" href="styles.css">
  18. -->
  19. </head>
  20. </style>
  21. <body>
  22. <div id="update" align="center">
  23. <table style="color:red;">
  24. <tr>
  25. <td>修复BUG</td>
  26. <td>删除订单</td>
  27. </tr>
  28. <tr>
  29. <td>新增功能</td>
  30. <td>右上角全屏功能</td>
  31. </tr>
  32. </table>
  33. </div>
  34. </body>
  35. </html>