InterviewSolution
| 1. |
Explain Function Tags? |
|
Answer» Function tags: JSTL Functions Tags: JSTL tags provide a number of functions that we can USE to perform common operation, most of them are for String manipulation such as String Concatenation, Split String etc. Syntax to include JSTL functions in JSP page is: <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="FN" %> Function tags: JSTL Functions Tags: JSTL tags provide a number of functions that we can use to perform common operation, most of them are for String manipulation such as String Concatenation, Split String etc. Syntax to include JSTL functions in JSP page is: <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn" %> |
|