Done.jsp Sample
This topic inludes the source code for the Done.jsp Sample.
Sample Location
This sample is located in the following directory in your WebLogic Workshop installation:
BEA_HOME/weblogic81/samples/workshop/SamplesApp/WebApp/handlingData/dataFlow/
Sample Source Code
01
02 <%@page contentType="text/html;charset=UTF-8" language="java"%>
03 <%@taglib prefix="netui" uri="netui-tags-html.tld"%>
04 <html>
05 <head>
06 <netui:base/>
07 <link href="../../resources/css/style.css" type="text/css" rel="stylesheet"/>
08 </head>
09 <body>
10 <jsp:include page="/resources/jsp/header.jsp"/>
11 <blockquote>
12 <h3>Thank You</h3>
13 <p>You have entered the following data.</p>
14 <netui:form action="done">
15 <table border="0">
16 <tr>
17 <td>
18 First Name: <netui:label value="{pageFlow.pageFlowScopedBean.firstname}" />
19 </td>
20
21 </tr>
22 <tr>
23 <td>
24 Last Name: <netui:label value="{pageFlow.pageFlowScopedBean.lastname}" />
25 </td>
26 </tr>
27 </table>
28 </netui:form>
29 <hr>
30 <p><netui:anchor action="begin">Re-run the Wizard</netui:anchor>
31 <p><netui:anchor href="../handlingDataController.jpf">Back to Handling Data Samples</netui:anchor>
32 </blockquote>
33 </body>
34 </html>
|