CREATE OR REPLACE PACKAGE BODY js_form AS
PROCEDURE js_form_demo
IS
BEGIN
htp.htmlOpen;
htp.headOpen;
htp.title('Form Verification Demo');
htp.print('');
htp.headClose;');
htp.print('
');
htp.print('');
htp.print('JavaScript Form Verification Demo
');
ld has been left blank, this example will try to ensure
that your email address is somewhat valid.
htp.print('');
htp.print('
');
htp.print('');
htp.print('This Oracle Web Server Stored Procedure uses Javascript to check if the form field has been left blank, this example will try to ensure');');
htp.print('that your email address is somewhat valid.
');
htp.print('');
htp.print('
');
htp.print('');
htp.print('
');
htp.print('');
htp.print('');
htp.print('Comments to tcheram@wenet.net');
htp.print('');
htp.print('');
htp.bodyClose;
htp.htmlClose;
owa_util.signature;
END js_form_demo;
END js_form;
/