| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" >
- <head>
- <title></title>
- <base target="_self" />
- <style type="text/css">
- TD
- {
- font-size: 11px;
- }
- TABLE
- {
- cursor: default;
- }
- A
- {
- font-weight: bold;
- color: #0000ff;
- }
- BUTTON
- {
- border-right: #7b9ebd 1px solid;
- padding-right: 5px;
- border-top: #7b9ebd 1px solid;
- padding-left: 5px;
- font-size: 11px;
- filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr=#ffffff, EndColorStr=#cecfde);
- border-left: #7b9ebd 1px solid;
- cursor: hand;
- border-bottom: #7b9ebd 1px solid;
- }
- BODY
- {
- border-right: 0px;
- border-top: 0px;
- font-size: 11px;
- margin: 0px;
- overflow: hidden;
- border-left: 0px;
- cursor: default;
- border-bottom: 0px;
- background-color: #76bcdd;
- }
- DIV.header
- {
- font-size: 18px;
- margin-bottom: 4px;
- color: #000099;
- border-bottom: #999999 1px solid;
- }
- TD
- {
- vertical-align: top;
- }
- BODY
- {
- font-family: Tahoma, Verdana, Arial;
- }
- INPUT
- {
- font-family: Tahoma, Verdana, Arial;
- }
- SELECT
- {
- font-family: Tahoma, Verdana, Arial;
- }
- TEXTAREA
- {
- font-family: Tahoma, Verdana, Arial;
- }
- </style>
- <script type="text/javascript" src="_common/scripts/Util.js"></script>
- <script language="JavaScript">
- // if no history and the parent window is the same as the current then we're
- // in a new window.
- function window.onload() {
- if (window.history.length == 0) {
- btnBack.innerText = "关闭";
- btnBack.onclick = function x() { top.close() };
- }
- // var errorpara=getUrlParam("error");
- // if(errorpara!="")
- // {
- // document.getElementById("errorpara").innerText=errorpara;
- // }
- var majorparts = getUrlParam("errcode");
- if (majorparts != "") {
- SetErrorMessage(majorparts);
- }
- }
- // Navigates to the original target URL
- function retryTarget(srcPath) {
- // path is always the second parameter if it exists
- window.navigate(srcPath.substr(srcPath.indexOf("&") + 1));
- }
- // set the message according to the hresult
- function SetErrorMessage(errorCode) {
- if (typeof (errorCode) == "undefined") {
- return;
- }
- if (errorCode.length > 0) {
- document.all.errorText.innerText = decodeURIComponent(errorCode);
- }
- }
- </script>
- </head>
- <body style="background-color: #76bcdd; overflow-x:auto; overflow-y:auto;">
- <table height="100%" cellspacing="0" cellpadding="0" width="100%" style="background-color: #76bcdd;">
- <tbody>
- <tr>
- <td style="vertical-align: middle; text-align: center; background-color: #76bcdd;">
- <table height="200" cellspacing="0" cellpadding="0" width="480" style="background-color: #76bcdd;">
- <tbody>
- <tr height="34">
- <td style="padding-left: 22px; font-weight: bold; font-size: 11px; color: #ffffff;
- padding-top: 9px" background="_imgs/bk_error_top.gif">
- 系统错误
- </td>
- </tr>
- <tr>
- <td style="padding-top: 3px; text-align: center" background="_imgs/bk_error_middle.gif">
- <table style="table-layout: fixed;" cellspacing="0" cellpadding="5" width="442">
- <colgroup>
- <col width="58">
- <col>
- <tbody>
- <tr>
- <td style="padding-top: 10px" align="middle">
- <img src="_imgs/debugInfo.gif">
- </td>
- <td>
- <div class="header">
- 系统错误详细信息</div>
- <div id="errorpara" style="color: Red; font-weight: bold; padding: 5px; text-align: center;">
- </div>
- <span id="errorText">
- </span>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- <tr height="20">
- <td style="padding-right: 23px; padding-left: 3px; padding-bottom: 3px; padding-top: 3px;
- text-align: right" background="_imgs/bk_error_middle.gif" colspan="2">
- <button id="btnBack" onclick="history.back();" style="font-size: 12px; padding-top: 2px;
- ">
- 返回</button>
- </td>
- </tr>
- <tr height="17">
- <td background="_imgs/bk_error_bottom.gif">
-
- </td>
- </tr>
- </tbody>
- </table>
- <br>
- <br>
- <br>
- <br>
- <br>
- </td>
- </tr>
- </tbody>
- </table>
- </body>
- </html>
|