Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <%--
- Document : index
- Created on : Nov 11, 2013, 12:55:32 PM
- Author : ENQ
- --%>
- <%@page contentType="text/html" pageEncoding="UTF-8"%>
- <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
- <!DOCTYPE html>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
- <title>Forma</title>
- <link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" />
- </head>
- <body align="center">
- <div class="container">
- <form action="/jlab1" method="POST">
- <div class="form-group">
- <label>Vardas:</label>
- <input type="text" class="form-control" name="name" />
- </div>
- <div class="form-group">
- <label>Komentaras:</label>
- <input type="text" class="form-control" name="message" />
- </div>
- <input type="submit" value="Siųsti" class="btn btn-primary" />
- </form>
- <br />
- <c:if test="${not empty msg}">
- <div class="alert alert-danger">
- <jsp:getProperty name="msg" property="name"/>:
- <jsp:getProperty name="msg" property="msg"/>
- </div>
- </c:if>
- <table class="table" id="messageTable">
- <tr >
- <th>ID</th>
- <th>Vardas</th>
- <th>Komentaras</th>
- <th>Data</th>
- </tr>
- <c:if test="${not empty msg_list}">
- <c:forEach var="m" begin="0" items="${msg_list}">
- <tr>
- <td>${m.id}</td>
- <td>${m.name}</td>
- <td>${m.message}</td>
- <td>${m.time}</td>
- </tr>
- </c:forEach>
- </c:if>
- </table>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment