LinkPage.jsp Sample
This topic inludes the source code for the LinkPage.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/imageAnchor/
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 linkPage.jsp
09 </title>
10 </head>
11 <body>
12 <jsp:include page="/resources/jsp/header.jsp"/> <br/>
13
14 <h3>Welcome to linkPage.jsp!</h3>
15 <netui:imageAnchor
16 href="index.jsp"
17 src="../../../resources/images/back.gif"
18 border="0"/>
19
20 </body>
21 </netui:html>
|