index.jsp

来自「java web开发技术方案宝典」· JSP 代码 · 共 21 行

JSP
21
字号
<%@ page contentType="text/html; charset=gb2312"%>
<%
  String path=request.getContextPath();
  String basePath=request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<html>
<head>
<title>友情提示</title>
<base href="<%=basePath%>">
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body background="image/back.gif">
<center>
  <table background="image/login/login.gif" border="0" width="360" height="235" style="margin-top:150" cellspacing="0" bordercolor="lightgrey" bordercolorlight="lightgrey" bordercolordark="white" bgcolor="#F9F9F9">
     <tr><td height="90">&nbsp;</td></tr>
     <tr><td style="text-indent:140pt">请从这里<a href="goAdmin"> [进入后台]</a></td></tr>
  </table>
</center>
</body>
</html>

⌨️ 快捷键说明

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