728x90
반응형
jstl-1.2.jar를 lib에 추가후 사하다.
변수선언 및 간단한 계산
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<c:set var="a" value="테스트"/>
${a}<br>
<c:set var="b" value="10"/>
${b}<br>
<c:set var="c" value="20"/>
${b+c}<br>
<c:set var="d" value="${b*c}"/>
${d}<br>
</body>
</html>
728x90
반응형
'개발 > jsp' 카테고리의 다른 글
jstl forTokens,formatNumber (0) | 2015.10.13 |
---|---|
jstl 함수 사용 방법 (0) | 2015.10.08 |
jsp URLEncoder (0) | 2015.10.06 |
jsp 게시판 만들기 1 (0) | 2015.09.30 |
jsp 달력만들기 (0) | 2015.09.25 |
댓글