Jsp3.jsp Sample
This topic inludes the source code for the Jsp3.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/strutsInterop/
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 <title>Struts Interop/Merge Example</title>
07 <netui:base/>
08 <link href="../../resources/css/style.css" type="text/css" rel="stylesheet"/>
09 </head>
10 <body bgcolor=white style="margin:0">
11 <jsp:include page="/resources/jsp/header.jsp"/>
12
13 <blockquote>
14
15 <h3 align="center">This page, Jsp3.jsp, is part of page flow
16 strutsInteropController</h3>
17 <hr width="95%"/>
18 <br/>
19 <font color="blue">
20 <h3 align="center">This is a page flow JSP page.</h3>
21 <p>This one raises "jpfAction3".</p>
22 </font>
23 <center>
24 <font color="red" size="4">
25 <netui:form action="jpfAction3">
26 <netui:label value="{actionForm.field1}"/>
27 </netui:form>
28 </font>
29 <br/>
30 <netui:anchor action="jpfAction3">Continue</netui:anchor>
31 </center>
32
33 </blockquote>
34 </body>
35 </html>
|