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/tagSamples/netui_databinding/callPageFlow/
Sample Source Code
01 <%@ page language="java" contentType="text/html;charset=UTF-8"%>
02 <%@ taglib uri="netui-tags-databinding.tld" prefix="netui-data"%>
03 <%@taglib prefix="netui" uri="netui-tags-html.tld"%>
04
05 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
06 <html>
07 <head>
08 <netui:base/>
09 <title>Demonstrate callPageFlow Tags</title>
10 <link href="../../../resources/css/style.css" type="text/css" rel="stylesheet"/>
11 </head>
12
13 <body>
14
15 <jsp:include page="/resources/jsp/header.jsp"/>
16
17 <blockquote>
18
19 <p><b>Call Page Flow Sample</b></p>
20
21 <p>The following JSP pages demonstrate the use of the <netui-data:callPageFlow> tag:</p>
22 <p><netui:anchor action="Simple.do">simple.jsp</netui:anchor></p>
23 <p><netui:anchor action="Sum.do">sum.jsp</netui:anchor></p>
24
25
26 </blockquote>
27
28 <hr>
29 <netui:anchor href="/WebApp/tagSamples/tagSamplesController.jpf">Return to Tag Samples</netui:anchor>
30
31 </body>
32
33 </html>
|