12 lines
328 B
Plaintext
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>
|