Description: Called from the Students menu item in the top nav bar. Load into 'main'frame. Initial pages for the two frames are 'students_left_nav' in the 'students_left_nav' frame; 'student_search' in 'students_main' frame.
CREATE OR REPLACE PROCEDURE students_main_frame AS BEGIN ------------------------------------------------------------------------------ -- FILE : students_main_frame.sql -- CREATED BY : Solomon Morse -- CREATED BY DATE: January 12, 2003 -- URL : students_main_frame ------------------------------------------------------------------------------ htp.p(' <FRAMESET COLS="20%,*"> <FRAME SRC="students_left_nav" NAME="students_left_nav"> <FRAME SRC="student_search" NAME="students_main"> <NOFRAMES> <BODY> <P>THIS PAGE USES FRAMES, BUT YOUR BROWSER DOESN''T SUPPORT THEM.</P> </BODY> </NOFRAMES> </FRAMESET> '); EXCEPTION WHEN OTHERS THEN htp.p('An error occurred on this page. Please try again later.'); END; /