JAVA/JSP & Servlet
JSTL [Core 라이브러리] : remove
zammanza
2013. 3. 26. 17:02
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>JSTL 코어 라이브러리 : remove 실습</title>
</head>
<body>
<c:set var="code" value="80012" /><br>
데이터 : <c:out value="${code }" /><br>
<c:remove var="code"/><br>
데이터 : <c:out value="${code }" /><br>
</body>
</html>