본문 바로가기

JAVA/JSP & Servlet

JSTL [Core 라이브러리] : remove

 

<%@ 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>

 

 

 

 

 

 

 

 

 

 

 

 

'JAVA > JSP & Servlet' 카테고리의 다른 글

JSTL [Core 라이브러리] : forEach  (0) 2013.03.26
JSTL [Core 라이브러리] : choose  (0) 2013.03.26
JSTL [Core 라이브러리] : scope  (0) 2013.03.26
JSTL [Core 라이브러리] : set  (0) 2013.03.26
[펌]JSTL 사용하기 (설정)  (0) 2013.03.26