Index.jsp Sample
This topic inludes the source code for the Index.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 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
03 <%@ page language="java" contentType="text/html;charset=UTF-8"%>
04 <%@ taglib uri="netui-tags-databinding.tld" prefix="netui-data"%>
05 <%@ taglib uri="netui-tags-html.tld" prefix="netui"%>
06 <html>
07 <head>
08 <netui:base/>
09 <link href="../../resources/css/style.css" type="text/css" rel="stylesheet"/>
10 </head>
11 <body>
12 <jsp:include page="/resources/jsp/header.jsp"/>
13 <blockquote>
14 <table border=0>
15 <tr valign="top">
16 <td width=288>
17 <netui:image src="../../resources/images/dataflow2.jpg" width="278" height="183" />
18 </td>
19 <td>
20 <p>This sample demonstrates how data can be passed
21 from one JSP to another in a page flow. We use a NameActionForm
22 in /dataFlow/dataFlowController.jpf to define
23 member variables and share data. </p>
24 <p><netui:anchor action="start"><h3>Start</h3></netui:anchor>
25 </td>
26 </tr>
27 </table>
28 </blockquote>
29 </body>
30 </html>
|