message.jsp
来自「java web开发技术方案宝典」· JSP 代码 · 共 20 行
JSP
20 行
<%@ page language="java" contentType="text/html; charset=gb2312"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
session.setAttribute("available","Y");
%>
<html>
<head>
<title>友情提示</title>
<base href="<%=basePath%>">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body bgcolor="#F4F1DE">
<center>
<table background="image/error.gif" border="0" width="362" height="214" style="margin-top:150" cellspacing="0" bordercolor="lightgrey" bordercolorlight="lightgrey" bordercolordark="white" bgcolor="#F9F9F9">
<tr><td align="left"> 服务超时,请<a href="index.jsp"> [重新访问]!</a></td></tr>
</table>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?