Index.jsp Sample
This topic inludes the source code for the Index.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_databinding/choice/
Sample Source Code
01 <!--Generated by WebLogic Workshop-->
02 <%@ page language="java" contentType="text/html;charset=UTF-8"%>
03 <%@ taglib uri="netui-tags-databinding.tld" prefix="netui-data"%>
04 <%@ taglib uri="netui-tags-html.tld" prefix="netui"%>
05 <%@ taglib uri="netui-tags-template.tld" prefix="netui-template"%>
06 <html>
07 <head>
08 <netui:base/>
09 <title>
10 /WebApp/choiceTag/index.jsp
11 </title>
12 <link href="../../../resources/css/style.css" type="text/css" rel="stylesheet"/>
13 </head>
14 <body>
15 <jsp:include page="/resources/jsp/header.jsp"/>
16 <blockquote>
17 <h3>Choice Tag Sample</h3>
18 <p>The following JSP pages demonstrate the use of the <netui-data:choice>
19 and <netui-data:choiceMethod> tags.</p>
20 <p><a href="items.jsp">items.jsp</a>
21 <p><a href="shipping.jsp">shipping.jsp</a>
22
23 </blockquote>
24 <hr>
25 <netui:anchor href="/WebApp/tagSamples/tagSamplesController.jpf">Return to Tag Samples</netui:anchor>
26 </body>
27 </html>
|