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/validator/
Sample Source Code
01 <%@ page contentType="text/html;charset=UTF-8" language="java" %>
02 <%@ taglib uri="netui-tags-html.tld" prefix="netui" %>
03
04 <html>
05 <head>
06 <netui:base/>
07 <title>Form Validation with Page Flow and Merged Struts ValidatorPlugin: Success Page</title>
08 <link href="../../../resources/css/style.css" type="text/css" rel="stylesheet"/>
09 </head>
10
11 <body>
12
13 <jsp:include page="/resources/jsp/header.jsp"/> <br/>
14 <blockquote>
15
16 <h3>Form Validation with Page Flow and Merged Struts ValidatorPlugin</h3>
17 <h4>Success Page</h4>
18
19 <p>All fields passed form validation.</p>
20
21 <hr width="90%">
22
23 <p>Navigation Options:</p>
24
25 <p> <netui:anchor action="begin">Re-run this sample</netui:anchor></p>
26 <p> <netui:anchor href="../Controller.jpf" >Return to Validation Samples</netui:anchor></p>
27 <p> <netui:anchor href="../../../Controller.jpf" >Return to Web Application Samples Home</netui:anchor></p>
28
29
30 </blockquote>
31
32 </body>
33 </html>
|