FrameSet.jsp Sample
This topic inludes the source code for the FrameSet.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/tree/
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 <netui:html>
07 <head>
08 <title>
09 Frame Set
10 </title>
11 <netui:base target="/tree/"/>
12 </head>
13 <frameset cols="20%,*">
14 <frame src="tree.jsp" name="navFrame" id="navFrame">
15 <frame src="content/RootFolder.jsp" name="contentFrame" id="contentFrame">
16 </frameset>
17 </netui:html>
|