Page_A.jsp Sample
This topic inludes the source code for the Page_A.jsp Sample.
Sample Location
This sample is located in the following directory in your WebLogic Workshop installation:
BEA_HOME/weblogic81/samples/workshop/SamplesApp/WebApp/navigation/simpleNavigation/
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 <title>
09 page_A.jsp
10 </title>
11 <link href="../../resources/css/style.css" type="text/css" rel="stylesheet"/>
12 </head>
13 <body>
14 <jsp:include page="/resources/jsp/header.jsp"/>
15 <blockquote>
16 <p>
17 <h3>This is page_A.jsp</h3>
18 <p>
19 <netui:anchor action="toPageB">Link to page_B.jsp</netui:anchor>
20 </blockquote>
21 </body>
22 </html>
|