123456789101112131415161718192021222324 |
- <%--
- Created by IntelliJ IDEA.
- User: x'b'w
- Date: 2021/6/20
- Time: 22:11
- To change this template use File | Settings | File Templates.
- --%>
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <%
- String basePath = request.getScheme()
- + "://"
- + request.getServerName()
- + ":"
- + request.getServerPort()
- + request.getContextPath()
- + "/"
- ;
- %>
- <%--<%=basePath%>--%>
- <base href="http://localhost:8089/TestServlet09_war_exploded/">
- <%--<base href="basePath">--%>
- <%--<link type="text/css" rel="stylesheet" href="static/css/style.css" >--%>
- <link type="text/css" rel="stylesheet" href="static/css/style.css">
- <script type="text/javascript" src="static/script/jquery-1.7.2.js"></script>
|