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/handlingData/databinding/
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 <title>
07 index.jsp
08 </title>
09 <link href="/WebApp/resources/css/style.css" type="text/css" rel="stylesheet"/>
10 </head>
11 <body>
12 <jsp:include page="/resources/jsp/header.jsp"/>
13 <h3>Databinding Samples</h3>
14 <blockquote>
15 <netui:anchor action="toActionForm">{actionForm...} context</netui:anchor>
16 <hr>
17 <netui:anchor action="toApplication">{application...} context</netui:anchor>
18 <hr>
19 <netui:anchor action="toBundle">{bundle...} context</netui:anchor>
20 <hr>
21 <netui:anchor action="toGlobalApp">{globalApp...} context</netui:anchor>
22 <hr>
23 <netui:anchor action="toPageContext">{pageContext...} context</netui:anchor>
24 <hr>
25 <netui:anchor action="toPageFlow">{pageFlow...} context</netui:anchor>
26 <hr>
27 <netui:anchor action="toRequest">{request...} context</netui:anchor>
28 <hr>
29 <netui:anchor action="toSession">{session...} context</netui:anchor>
30 <hr>
31 <netui:anchor action="toURL">{url...} context</netui:anchor>
32 </blockquote>
33 <hr>
34 <p><netui:anchor href="/WebApp/handlingData/handlingDataController.jpf">
35 Back to Handling Data Samples</netui:anchor>
36 </body>
37 </netui:html>
|