MazeDisplay.jsp Sample
This topic inludes the source code for the MazeDisplay.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/traditional_vs_pageFlow_webApp/pageFlow_webApp/
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 uri="netui-tags-html.tld" prefix="netui"%>
04 <%@ taglib uri="netui-tags-template.tld" prefix="netui-template"%>
05 <netui:html>
06 <head>
07 <title>
08 Page Flow Version: mazeDisplay.jsp
09 </title>
10 </head>
11 <body>
12 <h1>Page Flow Version: mazeDisplay.jsp</h1>
13 <netui:content value="{request.message}" />
14 <pre>
15 <netui:content value="{request.mazeResult}" />
16 </pre>
17
18
19 <hr>
20 <p><netui:anchor href="specifyMaze.jsp">Re-run the Page Flow version</netui:anchor>
21 <p><netui:anchor href="/WebApp/handlingData/traditional_vs_pageFlow_webApp/traditional_vs_pageFlow_webAppController.jpf">
22 Back to Traditional JSP Applications Vs. Page Flow Applications Sample</netui:anchor>
23 </body>
24 </netui:html>
|