<%@ page import="com.zky.manager.*"%> <%@ page import="com.zky.pub.*"%> <%@ page language="java" pageEncoding="utf-8" %> <%@page import="java.net.URLEncoder"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <link href="../css/font.css" rel="stylesheet" type="text/css"> <script src="../js/date.js"></script> <script src="../js/check.js"></script> <style type="text/css"> .error_div table tr td{ font-size: 18px; color: red; } .error_div table tr td a{ text-decoration: inherit; color:blue; } .error_div table tr td a:HOVER{ text-decoration: underline; color:red; } </style> <body> <br> <table width="60%" height="300px" border="0" align="center" cellpadding="0" cellspacing="1" class="box"> <tr> <td valign="top"><table width="100%" height="23" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="25%" background="/images/tab_search_01.jpg"><table width="80%" height="23" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="3%"><img src="/images/little_red.jpg" width="12" height="12"></td> <td width="97%" class="font12b"> <b>错误信息提示</b></td> </tr> </table></td> <td width="82%" background="/images/tab_search_03.jpg"><img src="/images/tab_search_02.jpg" width="12" height="23"></td> </tr> </table> <br><br> <table width="90%" border="0" align="center" cellpadding="2" cellspacing="1" class="table02" style="border-bottom:1px solid #d8e9fe;border-left:1px solid #d8e9fe; border-right:1px solid #d8e9fe;border-top: 1px solid #d8e9fe; "> <tr bgcolor="#FFFFFF" height="280px" valign="middle"> <td width="40%" align="right"> <img src="/images1/errors.jpg"> </td> <td width="60%"> <div class="error_div"> <% String ls_errorinfo = ""; ls_errorinfo = Common.IsoConvertGb(request.getParameter("errorinfo")); int index = ls_errorinfo.indexOf("java.lang.Exception:"); if(index >= 0) ls_errorinfo = ls_errorinfo.substring(0,index)+ls_errorinfo.substring(index+20,ls_errorinfo.length()); out.println(ls_errorinfo); %> </div> </td> </tr> </table> <br><br> </td> </tr> </table> <%@include file="/foot.jsp"%> </body> </html>