Last active
January 24, 2021 21:24
-
-
Save yostane/6a9190b679f433536be85c3df2a7afe6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <%@ page contentType="text/html;charset=UTF-8" language="java" %> | |
| <%@ taglib uri = "http://java.sun.com/jsp/jstl/core" prefix = "c" %> | |
| <html> | |
| <head> | |
| <title>Première page JSP</title> | |
| </head> | |
| <body> | |
| <p> | |
| <% | |
| out.print("Votre addresse IP est 🕵️: " + request.getRemoteAddr()); | |
| %> | |
| </p> | |
| <p>La date actuelle du serveur est : <%= (new java.util.Date()).toString()%></p> | |
| <a href = "<c:url value = "jstl-demo.jsp"/>">TEST</a> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment