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

📄 info.jsp

📁 tomcat最新安装程序
💻 JSP
字号:
<%@ page contentType="text/html;charset=GB2312" %>
<%
String errorinfo=request.getParameter("msg");
//80xx表示一些参数没有得到,但是不需要告诉用户相关信息
//81xx表示一些参数没有得到,但是需要告诉用户相关信息
//82xx表示数据库执行相关错误
if(errorinfo.equalsIgnoreCase("9999")){
	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" bgcolor="F1F7F9">
<table border="0" width="100%"  bordercolor="A1B7DB" class="collapse">
<tr  bgcolor="3366CC">
<td  class="common" align="center"><font color="#FFFFFF">系统信息!</font></td>
</tr>
<tr>
<td class="common" bgcolor="D4E8F4" align="center"><%=(errorinfo)%></td>
</tr>          
</table>

</body>
</html>

⌨️ 快捷键说明

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