Error.jsp Sample
This topic inludes the source code for the Error.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/dataFlow/
Sample Source Code
01 <!--Generated by Weblogic Workshop-->
02 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
03 <%@ page language="java" contentType="text/html;charset=UTF-8"%>
04 <%@ taglib uri="netui-tags-databinding.tld" prefix="netui-data"%>
05 <%@ taglib uri="netui-tags-html.tld" prefix="netui"%>
06 <html>
07 <head>
08 <netui:base/>
09 <link href="../../resources/css/style.css" type="text/css" rel="stylesheet"/>
10 </head>
11 <body>
12 <jsp:include page="/resources/jsp/header.jsp"/>
13 <br/>
14 <center>
15 <b>
16 An internal error occured.
17 </b>
18 <br/>
19 <br/>
20 <a href="dataFlowController.jpf">Back to dataFlow Start Page</a>
21 </center>
22 </body>
23 </html>
|