123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
- <%
- 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>My JSP 'updateuser.jsp' starting page</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="keyword1,keyword2,keyword3">
- <meta http-equiv="description" content="This is my page">
- <link rel="stylesheet" type="text/css" href="${pageContext.request.contextPath}/css/bootstrap.css">
- <script type="text/javascript" src="${pageContext.request.contextPath}/js/jquery-3.1.0.min.js"></script>
- <script type="text/javascript" src="${pageContext.request.contextPath}/js/bootstrap.js"></script>
- </head>
-
- <body>
- <body>
- <div class="panel-body" style="padding-bottom:0px;">
- <h2>排名</h2>
- <table id="tb_departments" class="table table-bordered">
- <thead>
- <tr>
- <th align="center">名次</th>
- <th align="center">团体名</th>
- <th align="center">成绩</th>
- </tr>
- </thead>
- <tbody>
- <c:forEach items="${list}" var="sc" varStatus="num">
- <tr> <td>第${num.count}名</td>
- <td><a href="SportServlet?method=score_detail&id=${sc.name}" >${sc.name}</a></td>
- <td>${sc.xm_name}</td>
- </tr>
- </c:forEach>
- </tbody>
- </table>
- </div>
- </body>
- </html>
|