Success.jsp Sample
This topic inludes the source code for the Success.jsp Sample.
Sample Location
This sample is located in the following directory in your WebLogic Workshop installation:
BEA_HOME/weblogic81/samples/workshop/SamplesApp/WebApp/struts/validation/basic/
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
07 <netui:html>
08 <html>
09 <head>
10 <netui:base/>
11 <title>Form Validation with Page Flows: Success Page</title>
12 <link href="../../../resources/css/style.css" type="text/css" rel="stylesheet"/>
13 </head>
14
15 <body>
16
17 <jsp:include page="/resources/jsp/header.jsp"/> <br/>
18 <blockquote>
19
20 <h3>Success!</h3>
21
22 <p>All fields passed form validation.</p>
23
24 <hr width="90%">
25
26 <p>Navigation Options:</p>
27
28 <p> <netui:anchor action="begin">Re-run this sample</netui:anchor></p>
29 <p> <netui:anchor href="../Controller.jpf" >Return to Validation Samples</netui:anchor></p>
30 <p> <netui:anchor href="../../../Controller.jpf" >Return to Web Application Samples Home</netui:anchor></p>
31
32 </blockquote>
33 </body>
34 </netui:html>
|