G
gk
JSF provides component rendering model.
Here I'm studying this example:
<%@ page contentType="text/html" %>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<f:view>
<html>
<head><title>jsf h:commandButton example</title></head>
<body>
<h:form>
<h:commandButton value="Go To Index Page."
action="page1" />
</h:form>
</body>
</html>
</f:view>
Is it because JSF provide component rendering model , so the html
button is visible in display ?
Is not JSTL also provide a similar kind of component rendering
model ? it also has a <cut to help printing out the display.
Here I'm studying this example:
<%@ page contentType="text/html" %>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<f:view>
<html>
<head><title>jsf h:commandButton example</title></head>
<body>
<h:form>
<h:commandButton value="Go To Index Page."
action="page1" />
</h:form>
</body>
</html>
</f:view>
Is it because JSF provide component rendering model , so the html
button is visible in display ?
Is not JSTL also provide a similar kind of component rendering
model ? it also has a <cut to help printing out the display.