index.jsp
来自「基于J2EE技术的 电子购物商城系统」· JSP 代码 · 共 30 行
JSP
30 行
<%@ page language="java" pageEncoding="gb2312"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>主页</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="ishop">
<meta http-equiv="description" content="ishop home">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body BGCOLOR="00AAFF">
<h1 align="center">欢迎光临民院二手交易系统</h1>
<center><jsp:include page="./user/login.jsp" /></center>
<center><a href="./user/register.jsp" />新用户注册</a></center><br>
<center><a href="./goods/goodslist.jsp">查看商品列表</a></center><br>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?