DefaultPage.jsp Sample
This topic inludes the source code for the DefaultPage.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_template/template/
Sample Source Code
1 <%@ page language="java" contentType="text/html;charset=UTF-8"%>
2 <%@ taglib uri="netui-tags-databinding.tld" prefix="netui-data"%>
3 <%@ taglib uri="netui-tags-html.tld" prefix="netui"%>
4 <%@ taglib uri="netui-tags-template.tld" prefix="netui-template"%>
5
6 <p style="font-size:10pt;">This is the default text used when a content page fails to set content for a placeholder.
7 <p><%= 1 + 1 %>
|