Result.jsp Sample
This topic inludes the source code for the Result.jsp Sample.
Sample Location
This sample is located in the following directory in your WebLogic Workshop installation:
BEA_HOME/weblogic81/samples/workshop/SamplesApp/WebApp/controls/webservice/polling/
Sample Source Code
01
02 <%@page contentType="text/html;charset=UTF-8" language="java"%>
03 <%@taglib prefix="netui" uri="netui-tags-html.tld"%>
04 <html>
05 <head>
06 <title>Result from Asynchronous Web Service</title>
07 <netui:base/>
08 <link href="/WebApp/resources/css/style.css" type="text/css" rel="stylesheet"/>
09 </head>
10 <body>
11 <jsp:include page="/resources/jsp/header.jsp"/>
12
13 <blockquote>
14
15 <p>Your message has arrived: </p>
16
17 <p><netui:label style="font-weight:bold;" value="{pageFlow.m_message}"></netui:label></p>
18
19 </blockquote>
20
21 <hr>
22 <p><netui:anchor action="begin">Re-run this sample</netui:anchor>
23 <p><netui:anchor href="/WebApp/controls/controlsController.jpf">Back to Controls Samples</netui:anchor>
24
25 </body>
26 </html>
|