How To Use Frames in PL/SQL?
Hi everyone!
I am using SQL Navigator 4.5 and I have a question about using frames:
I have a website that goes to a page with 2 frames, one at the top and one at the bottom. The bottom frame has a button. When I click the button a new webpage appears within the same frame. However, I wish to open the webpage in an entire window instead of within that small, bottom frame.
I've experimented with using noframesOpen as such:
htp.htmlopen;
htp.noframesOpen;
htp.frame('some link');
htp.noframesClose;
htp.htmlclose;
but all this does is give me a blank page within the frame.
Does anyone know how to navigate from within a frame to without?
Thank you!