Done.jsp Sample
This topic inludes the source code for the Done.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 language="java" contentType="text/html;charset=UTF-8"%>
02 <%@taglib prefix="netui" uri="netui-tags-html.tld"%>
03 <html>
04 <head>
05 <title>Struts Interop/Merge Example</title>
06 <netui:base/>
07 </head>
08 <body>
09 <h2 align="center">Struts Interop/Merge Example - This is done.jsp</h2>
10 <hr align="center" width="95%"/>
11 <br/>
12 <center>
13 <font color="green"><h2>Example completed successfully.</h2></font>
14 <br/>
15 <netui:anchor href="/WebApp/struts/strutsController.jpf">Return to Struts Samples</netui:anchor>
16 <br/><br/>
17 <hr align="center" width="95%"/>
18 </center>
19 </body>
20 </html>
|