ShowData.jsp Sample
This topic inludes the source code for the ShowData.jsp Sample.
Sample Location
This sample is located in the following directory in your WebLogic Workshop installation:
BEA_HOME/weblogic81/samples/workshop/SamplesApp/WebApp/tagSamples/netui/radioButtons/
Sample Source Code
01 <%@ page language="java" contentType="text/html;charset=UTF-8"%>
02 <%@ taglib uri="netui-tags-databinding.tld" prefix="netui-data"%>
03 <%@ taglib uri="netui-tags-html.tld" prefix="netui"%>
04 <%@ taglib uri="netui-tags-template.tld" prefix="netui-template"%>
05 <netui:html>
06 <head>
07 <title>
08 Web Application Page
09 </title>
10 </head>
11 <body>
12 <jsp:include page="/resources/jsp/header.jsp"/>
13 <blockquote>
14 <p><b>You selected:</b>
15 <p><netui:label value="{request.submittedData.selection}" />
16 <p><netui:anchor action="backToIndex">Select again</netui:anchor>
17 </blockquote>
18 </body>
19 </netui:html>
|