java/HrisniciSpameri/web/index.jsp
author František Kučera <franta-hg@frantovo.cz>
Wed Feb 11 23:00:37 2009 +0100 (2009-02-11)
changeset 7 29bb67aa99fd
parent 4 e3e2a3a4c36a
child 9 457918d6cd1f
permissions -rw-r--r--
Řazení tabulky hříšníků klikáním na záhlaví tabulky – JS na straně klienta.
     1 <%@page contentType="text/html" pageEncoding="UTF-8"%>
     2 <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
     3 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
     4 "http://www.w3.org/TR/html4/loose.dtd">
     5 
     6 <html>
     7     <head>
     8         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
     9         <link href="styl.css" type="text/css" rel="StyleSheet"/>
    10         <script type="text/javascript" src="tridenitabulky.js"></script>
    11         <title>Hříšníci spameři</title>
    12     </head>
    13     <body>
    14         <h1>Hříšníci spameři</h1>
    15 
    16 
    17         <c:choose>
    18             <c:when test="${param.s == 'ucitele'}">
    19                 <jsp:include page="souhrn.jspx"/>
    20             </c:when>
    21             <c:when test="${param.s == 'komise'}">
    22                 <jsp:include page="souhrn.jspx"/>
    23             </c:when>
    24             <c:otherwise>
    25                 <jsp:include page="souhrn.jspx"/>
    26             </c:otherwise>
    27         </c:choose>
    28     </body>
    29 </html>