Confirm.jsp Sample
This topic inludes the source code for the Confirm.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 <!--Generated by Weblogic Workshop-->
02 <%@ page language="java" contentType="text/html;charset=UTF-8"%>
03 <%@ taglib uri="netui-tags-databinding.tld" prefix="netui-data"%>
04 <%@ taglib uri="netui-tags-html.tld" prefix="netui"%>
05 <%@ taglib uri="netui-tags-template.tld" prefix="netui-template"%>
06 <html>
07 <head>
08 <netui:base/>
09 <link href="../../resources/css/style.css" type="text/css" rel="stylesheet"/>
10 </head>
11
12 <body>
13 <jsp:include page="/resources/jsp/header.jsp"/>
14 <blockquote>
15 <h3>Confirm</h3>
16 <p>Do you want to submit the following data?</p>
17 <netui:form action="confirm">
18 <table border="0">
19 <tr>
20 <td>
21 First Name: <netui:label value="{pageFlow.pageFlowScopedBean.firstname}" />
22 </td>
23
24 </tr>
25 <tr>
26 <td>
27 Last Name: <netui:label value="{pageFlow.pageFlowScopedBean.lastname}" />
28 </td>
29 </tr>
30 <tr>
31 <td>
32 <netui:imageAnchor action="cancel" src="../../resources/images/blue_cancel.gif" formSubmit="true" border="0"/>
33 <netui:imageAnchor action="confirm" src="../../resources/images/submit.gif" formSubmit="true" border="0"/>
34 </td>
35 </tr>
36 </table>
37 </netui:form>
38 </blockquote>
39 </body>
40 </html>
|