Word.html 767 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"
  3. xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3">
  4. <head>
  5. <title>Hello World!</title>
  6. <script type="text/javascript">
  7. function Save() {
  8. document.getElementById("PageOfficeCtrl1").WebSave();
  9. }
  10. </script>
  11. <script type="text/javascript">
  12. function AddSeal() {
  13. try{
  14. document.getElementById("PageOfficeCtrl1").ZoomSeal.AddSeal();
  15. }catch (e){ };
  16. }
  17. </script>
  18. </head>
  19. <body>
  20. <h1 th:inline="text">Hello.v.2</h1>
  21. <div style="width:1000px;height:700px;" th:utext="${pageoffice}"></div>
  22. </body>
  23. </html>