[JSTL]c:outで変数の値を出力するサンプル
書式
c:out value="#{変数名}"
使用例
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title>Core out tag</titile>
</head>
<body>
<c:set var="infoname" value="111" />
<c:out value="${infoname}" />
</body>
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<html>
<head>
<title>Core out tag</titile>
</head>
<body>
<c:set var="infoname" value="111" />
<c:out value="${infoname}" />
</body>
<%@ page contentType="text/html; charset=UTF-8" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> <html> <head> <title>Core out tag</titile> </head> <body> <c:set var="infoname" value="111" /> <c:out value="${infoname}" /> </body>