Add exo5 code.
[TD_webapps.git] / ROOT / exo5 / date.jsp
1 <%@ page import="java.io.*, java.util.*, javax.servlet.*" %>
2 <html>
3 <body>
4 <%! Date theDate = new Date();
5 String getDate() {
6 return theDate.toString();
7 }
8 %>
9 Aujourd'hui est le <%= getDate() %>
10 </body>
11 </html>