⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 uperror.jsp

📁 tomcat最新安装程序
💻 JSP
字号:
<%@ page contentType="text/html; charset=GB2312" %>
<%@ page import="cn.com.aheadsoft.util.TheProperties" %>
<%
String errorinfo=request.getParameter("errorinfo");
if(!TheProperties.ENCODE.equalsIgnoreCase("iso8859_1")){
errorinfo=new String(errorinfo.getBytes("iso8859_1"), "GB2312");
}
//80xx表示一些参数没有得到,但是不需要告诉用户相关信息
//81xx表示一些参数没有得到,但是需要告诉用户相关信息
//82xx表示数据库执行相关错误
if(errorinfo.equalsIgnoreCase("8001")){
errorinfo="您上传了不允许上传的文件!";
}else if(errorinfo.equalsIgnoreCase("8101")){

errorinfo="请输入授权组名!!";
}else if(errorinfo.equalsIgnoreCase("8102")){

errorinfo="系统获取授权组ID错误!!";
}else if(errorinfo.equalsIgnoreCase("8201")){

errorinfo="系统添加授权组出错!!";
}else if(errorinfo.equalsIgnoreCase("8202")){

errorinfo="系统修改授权组出错!!";
}else if(errorinfo.equalsIgnoreCase("8203")){

errorinfo="系统删除授权组出错!!";
}






 %>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB2312" />
<link rel="stylesheet" type="text/css" href="/krm/jsp/css/css.css">
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="98%" border="0" align="center" cellspacing="2"  bordercolor="A1B7DB" class="collapse">
  <tr>
    <td height="28" align="center"  style="border-bottom:#4A7F9B 2px solid;"><font color="#336699" size="2"><strong>上传文件类型有误!</strong></font></td>
</tr>
<tr>
    <td height="25" align="center" class="common"><%=(errorinfo)%></td>
</tr>          
<tr>
    <td height="25" align="center" class="common"> 
      <input name="button" type="button"  onmouseover="this.className='button2'" onmouseout="this.className='button1'" class="button1" onClick="history.back(1);" value="返 回" >
</td>
</tr> 
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -