Demo.jsp Sample
This topic inludes the source code for the Demo.jsp Sample.
Sample Location
This sample is located in the following directory in your WebLogic Workshop installation:
BEA_HOME/weblogic81/samples/workshop/ExtensionDevKit/TaglibExtDevKit/TaglibWebProject/
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 <%@ taglib prefix="tdk" uri="tdk-tags.tld"%>
07
08 <netui:html>
09 <head>
10 <title>
11 Demo Taglib Page
12 </title>
13 </head>
14 <body>
15 <p>
16 <tdk:barcode encodingType="code39" value="vogue"></tdk:barcode>
17 </p>
18 </body>
19 </netui:html>
|