MyJsp.jsp 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
  2. <%
  3. String path = request.getContextPath();
  4. String basePath = request.getScheme() + "://"
  5. + request.getServerName() + ":" + request.getServerPort()
  6. + path + "/";
  7. %>
  8. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  9. <html>
  10. <head>
  11. <title>My JSP 'MyJsp.jsp' starting page</title>
  12. <link rel="stylesheet"
  13. href="<%=request.getContextPath()%>/css/dialogWin_css.css" />
  14. <link href="<%=request.getContextPath()%>/css/framework_main_style.css"
  15. rel="stylesheet" type="text/css" />
  16. <script type="text/javascript" language=JavaScript
  17. src="<%=request.getContextPath()%>/js/common/jquery-1.8.3.min.js"></script>
  18. </head>
  19. <body>
  20. <div id="oDisDiv" name="oDisDiv" style="position:absolute;background:#dfecfd;opacity:0.5;filter:alpha(opacity=20);top:0px;left:0px;width:500px;height:500px;zIndex:1;display:">
  21. <!--sbox start -->
  22. <span id="dialogCase">
  23. <table id="dialogBox" class="" width="400px" border="0"
  24. cellpadding="0" cellspacing="0"
  25. style="z-index:1; border:none;border-collapse:collapse;left:0px; ">
  26. <tr>
  27. <td class="">
  28. <table onselectstart="return false;"
  29. class="ideal-window-header-Bg" style="-moz-user-select:none;"
  30. width="100%" border="0" cellpadding="0" cellspacing="0">
  31. <tr>
  32. <td class="ideal-window-header-LeftBg"></td>
  33. <td id="dialogBoxTitle"
  34. onmousedown="new dialog().moveStart(event, 'dialogBox')"
  35. style="color:#0a3353;cursor:move;font-size:12px;font-weight:bold;padding-top:2px;padding-left:13px;">系统提示信息</td>
  36. <td id="dialogClose" width="27" align="right" valign="middle">
  37. <!-- sclose start -->
  38. <input type="image" id="dialogBoxClose"
  39. onclick="new dialog().reset();removeDisdiv();"
  40. src="./images/BtnGb.gif" border="0" width="15" height="15"
  41. onmouseover="this.src='./images/BtnGb2.gif';"
  42. onmouseout="this.src='./images/BtnGb.gif';" align="absmiddle" />
  43. <!-- sclose end-->
  44. </td>
  45. <td width="6" class="ideal-window-header-RightBg" style=""></td>
  46. </tr>
  47. </table>
  48. </td>
  49. </tr>
  50. <tr id="dialogHeight" style="height:400px">
  51. <td id="dialogBody" style="background:#fff;color:#000; padding:0px; border:1px solid #8db3e4;border-top:0px none;">
  52. <!-- <iframe id='dialogFrame' width='100%' height='100%' frameborder='0' style='overflow:auto;'></iframe> -->
  53. <!--sbody-->
  54. <table id="dialogBodyBox" border="0" align="center"
  55. cellpadding="0" cellspacing="0" width="100%"
  56. style="background:#fff; height:90px;">
  57. <tr height="10">
  58. <td colspan="4" align="center"></td>
  59. </tr>
  60. <tr height="10">
  61. <td colspan="4" align="center"></td>
  62. </tr>
  63. <tr>
  64. <td width="10"></td>
  65. <td width="80" align="center" valign="middle"><img
  66. id="dialogBoxFace" src="./images/6.gif" /></td>
  67. <td id="dialogMsg" style="font-size:14px;color:#06559b;"></td>
  68. <td width="10"></td>
  69. </tr>
  70. <tr height="10">
  71. <td colspan="4" align="center"></td>
  72. </tr>
  73. <tr></tr>
  74. </table>
  75. <table
  76. style="width:100%; height:40px; background:url(./images/btnTableBG.gif) repeat-x; ">
  77. <tr>
  78. <td id="dialogFunc" colspan="4" align="center">
  79. <!-- sfunc start -->
  80. <input id="dialogOk" type="button"
  81. class="btnNormal" value="确认" onclick="new dialog().reset();" />
  82. <input id="dialogCancel" type="button" class="btnNormal"
  83. value="取消" onclick="new dialog().reset();" />
  84. <!-- sfunc end -->
  85. </td>
  86. </tr>
  87. </table>
  88. </td>
  89. </tr>
  90. </table>
  91. <div id="dialogBoxShadow" style="display:none;z-index:998;cursor:move;"></div>
  92. </span>
  93. </div>
  94. </body>
  95. </html>