Description: This will be your entry page for the sample application.
The Splash page is made using two images, one for a background and one for the main page.
The final splash page will resemble the following:
Welcome to the University Maintenance Application
|
The PSP to create the splash page will be as follows:
<%@ page language="PL/SQL" %> <%@ plsql procedure="splash" %> <% -------------------------------------------------------- -- FILENAME: splash -- FILEDATE: Jan 10, 2003 -- CREATED BY: Ben Rosenzweig -- DESCRIPTION: Splash page -- URL : http://localhost/pls/any/splash -------------------------------------------------------- %> <HTML> <HEAD> <TITLE>Splash Page</TITLE> </HEAD> <BODY BACKGROUND="/images/3.gif"> <CENTER> <H1>Welcome to the University Maintenance Application</H1> <IMG SRC="/images/ducks.jpg" BORDER="0" WIDTH="200" HEIGHT="150"> </CENTER> </BODY> </HTML>