Lauren1265
Lauren1265

Reputation: 23

Unknown tag (fmt:formatNumber)

Eclipse had this compilation error:

Unknown tag (fmt:formatNumber)

<fmt:formatNumber value="${product.price}" type="currency" currencyCode="USD" /></td>

Upvotes: 1

Views: 2871

Answers (1)

kundan3312143
kundan3312143

Reputation: 81

Add this to the top of jsp page.

<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>

Upvotes: 4

Related Questions