1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <%@ 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>团体明细界面(${requestScope.area_name})</h2>
- <table id="tb_departments" class="table table-bordered">
- <thead>
- <tr>
- <th align="center">序号</th>
- <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>${sc.name}</td>
- <td>${sc.xm_name}</td>
- <td>${sc.xm_cj}</td>
- </tr>
- </c:forEach>
- </tbody>
- </table>
- </div>
- </body>
- </html>
|