Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Link one page to another in oracle apex

this is supposed to be simple i have two pages A and B what i want to do is add a button (a hyperlink or image will do) in page A that when clicked go to page B

how can i do that ?

thanks

like image 654
Ahmed Kotb Avatar asked Apr 15 '11 15:04

Ahmed Kotb


2 Answers

If you don't want a button, simply use a html href to f?p=&APP_ID.:<your page number to link to>:&SESSION.

<a href="f?p=&APP_ID.:2:&SESSION.">Go to page 2!</a> takes you to your page number 2...

like image 117
lba Avatar answered Oct 29 '22 08:10

lba


There are many ways. Perhaps the simplest is to create an Apex button using the Create Button wizard. Follow the instructions and when you get to the "Action When Clicked" page, choose "Redirect to Page in this Application" as the Action and enter the Page number you want to go to when the button is clicked. You can also enter other details such as Request, Clear Cache, Set These Items. enter image description here

like image 37
Tony Andrews Avatar answered Oct 29 '22 10:10

Tony Andrews