InterviewSolution
Saved Bookmarks
| 1. |
Explain Jstl Core Tags? |
|
Answer» JSTL Core tags provide support for iteration, CONDITIONAL logic, catch exception, url, forward or REDIRECT RESPONSE etc. To USE JSTL core tags, we should include it in the JSP page like below. <%@ TAGLIB uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> JSTL Core tags provide support for iteration, conditional logic, catch exception, url, forward or redirect response etc. To use JSTL core tags, we should include it in the JSP page like below. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> |
|