java_web/webapp/jstl_test.jsp
2024-12-16 19:45:31 +08:00

12 lines
328 B
Plaintext

<%@ page contentType="text/html;charset=gb2312" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head><title>Using JSTL</title></head>
<body>
<c:out value="Welcome to using JSTL" />
<br>
Request Method:${pageContext.request.method}<br>
Remote Address:${pageContext.request.remoteAddr}
</body>
</html>