123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
- <%
- String path = request.getContextPath();
- String basePath = request.getScheme() + "://"
- + request.getServerName() + ":" + request.getServerPort()
- + path + "/";
- %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <title>My JSP 'MyJsp.jsp' starting page</title>
- <link rel="stylesheet"
- href="<%=request.getContextPath()%>/css/dialogWin_css.css" />
- <link href="<%=request.getContextPath()%>/css/framework_main_style.css"
- rel="stylesheet" type="text/css" />
- <script type="text/javascript" language=JavaScript
- src="<%=request.getContextPath()%>/js/common/jquery-1.8.3.min.js"></script>
- </head>
- <body>
- <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:">
- <!--sbox start -->
- <span id="dialogCase">
- <table id="dialogBox" class="" width="400px" border="0"
- cellpadding="0" cellspacing="0"
- style="z-index:1; border:none;border-collapse:collapse;left:0px; ">
- <tr>
- <td class="">
- <table onselectstart="return false;"
- class="ideal-window-header-Bg" style="-moz-user-select:none;"
- width="100%" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td class="ideal-window-header-LeftBg"></td>
- <td id="dialogBoxTitle"
- onmousedown="new dialog().moveStart(event, 'dialogBox')"
- style="color:#0a3353;cursor:move;font-size:12px;font-weight:bold;padding-top:2px;padding-left:13px;">系统提示信息</td>
- <td id="dialogClose" width="27" align="right" valign="middle">
- <!-- sclose start -->
- <input type="image" id="dialogBoxClose"
- onclick="new dialog().reset();removeDisdiv();"
- src="./images/BtnGb.gif" border="0" width="15" height="15"
- onmouseover="this.src='./images/BtnGb2.gif';"
- onmouseout="this.src='./images/BtnGb.gif';" align="absmiddle" />
- <!-- sclose end-->
- </td>
- <td width="6" class="ideal-window-header-RightBg" style=""></td>
- </tr>
- </table>
- </td>
- </tr>
- <tr id="dialogHeight" style="height:400px">
- <td id="dialogBody" style="background:#fff;color:#000; padding:0px; border:1px solid #8db3e4;border-top:0px none;">
- <!-- <iframe id='dialogFrame' width='100%' height='100%' frameborder='0' style='overflow:auto;'></iframe> -->
- <!--sbody-->
- <table id="dialogBodyBox" border="0" align="center"
- cellpadding="0" cellspacing="0" width="100%"
- style="background:#fff; height:90px;">
- <tr height="10">
- <td colspan="4" align="center"></td>
- </tr>
- <tr height="10">
- <td colspan="4" align="center"></td>
- </tr>
- <tr>
- <td width="10"></td>
- <td width="80" align="center" valign="middle"><img
- id="dialogBoxFace" src="./images/6.gif" /></td>
- <td id="dialogMsg" style="font-size:14px;color:#06559b;"></td>
- <td width="10"></td>
- </tr>
- <tr height="10">
- <td colspan="4" align="center"></td>
- </tr>
- <tr></tr>
- </table>
- <table
- style="width:100%; height:40px; background:url(./images/btnTableBG.gif) repeat-x; ">
- <tr>
- <td id="dialogFunc" colspan="4" align="center">
- <!-- sfunc start -->
- <input id="dialogOk" type="button"
- class="btnNormal" value="确认" onclick="new dialog().reset();" />
- <input id="dialogCancel" type="button" class="btnNormal"
- value="取消" onclick="new dialog().reset();" />
- <!-- sfunc end -->
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <div id="dialogBoxShadow" style="display:none;z-index:998;cursor:move;"></div>
- </span>
- </div>
- </body>
- </html>
|