Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Htp Command to Clear Screen?

530085May 4 2007 — edited May 4 2007
Is there an htp command that will erase any output that has been put to a screen? I have a program that uses radio buttons for various options. I have a section of text that displays at the top of every page regardless of what radio button is selected. However, when I do some error checking with and If Statement, I just want the error message to appear by itself. I want the "header" text I set up for all the other pages to go away when my error checks display an error.

Here is an example of one of my error checks:

ELSIF detail_to_date is null
THEN
htp.htmlOpen;
vvchk_errormsg('**** ERROR on Input ****', 'End Date Not Entered', 'Select the browsers BACK button to re-enter values.');
htp.htmlClose;
goto end_of_program;


Is there something like an htp.clear I can put just before the errormsg output to give it a fresh screen? Thanks!
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jun 1 2007
Added on May 4 2007
1 comment
359 views