This commit is contained in:
Frederic Debuire
2007-12-14 14:57:31 +00:00
parent b8f073ac91
commit a380ecebef
5 changed files with 109 additions and 6 deletions

View File

@@ -1,5 +1,7 @@
<%@ include file="/WEB-INF/jsp/include.jsp"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt" %>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
<%@ page session="true" %>
<html>
@@ -11,6 +13,13 @@
Soumission OK
<c:if test="${fileUploaded}">
<p>File uploaded succesfully.</p>
<c:if test="${!empty(file)}">
<pre style="border: solid 1px;">${file}</pre>
</c:if>
</c:if>
<a href="<c:url value="main.htm"/>">Home</a>
</body>