Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Please Help.

Re: Please Help.

From: Christopher Beck <clbeck_at_us.oracle.com>
Date: Mon, 07 Dec 1998 20:17:05 GMT
Message-ID: <366c3616.23606274@inet16.us.oracle.com>


On Mon, 07 Dec 1998 11:53:01 -0800, Steven <koh_cc_at_pacific.net.sg> wrote:

>hi,
>
> Can anyone help on this question:
>
> Any htp package that can act just like a "back"
> button of a browser.

You could write your own as long as you don't mind using a little javascript.

eg.

create or replace
package my_htp as

  procedure back_button;

end my_htp;
/

create or replace
package body my_htp as

  procedure back_button is
  begin
    htp.p( '<input type="button" value="Back" ' ||

           'onClick="window.history.go(-1)>"' );   end back_button;

end my_htp;
/

Hope this helps.

chris.

>
> Thank you.

--
Christopher Beck
Oracle Corporation
clbeck_at_us.oracle.com
Reston, VA.



Opinions are mine and do not necessarily reflect those of Oracle Corporation Received on Mon Dec 07 1998 - 14:17:05 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US