main.jsp
来自「都市供求信息网分为前后台的设计」· JSP 代码 · 共 27 行
JSP
27 行
<%@ page language="java" contentType="text/html; charset=GBK"%>
<%@ taglib uri="/struts-tags" prefix="s2"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
String mainPage=(String)request.getAttribute("mainPage");
if(mainPage==null||mainPage.equals(""))
mainPage="default.jsp";
%>
<html>
<head>
<title>后台首页</title>
<base href="<%=basePath%>">
<link type="text/css" rel="stylesheet" href="<s2:url value='css/style.css'/>">
</head>
<body>
<center>
<table border="0" cellpadding="0" cellspacing="0" width="688" height="100%">
<tr height="20"><td><img src="images/default_t.jpg"></td></tr>
<tr><td background="images/default_m.jpg" valign="top"><jsp:include page="<%=mainPage%>"/></td></tr>
<tr height="26"><td><img src="images/default_e.jpg"></td></tr>
</table>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?