14 lines
411 B
Plaintext
14 lines
411 B
Plaintext
|
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
|
||
|
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
|
||
|
|
||
|
<html>
|
||
|
<head> <title>Page Flow / JSF</title> </head>
|
||
|
<body bgcolor="white">
|
||
|
<h3>Page Flow / JSF: page 4</h3>
|
||
|
<f:view>
|
||
|
<h:form id="go1form" >
|
||
|
<h:commandButton id="go1button" action="go1" value="back to page 1" />
|
||
|
</h:form>
|
||
|
</f:view>
|
||
|
</HTML>
|