在 oracle apex 中将一个页面链接到另一个页面

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/5678856/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-10 03:13:13  来源:igfitidea点击:

Link one page to another in oracle apex

oracleoracle-apex

提问by Ahmed Kotb

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

这应该很简单我有两个页面 A 和 B 我想要做的是在页面 A 中添加一个按钮(超链接或图像可以),点击后转到页面 B

how can i do that ?

我怎样才能做到这一点 ?

thanks

谢谢

采纳答案by Tony Andrews

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

有很多方法。也许最简单的方法是使用“创建按钮”向导创建 Apex 按钮。按照说明操作,当您进入“单击时操作”页面时,选择“重定向到此应用程序中的页面”作为操作,然后输入单击按钮时要转到的页码。您还可以输入其他详细信息,例如请求、清除缓存、设置这些项目。 在此处输入图片说明

回答by lba

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

如果您不需要按钮,只需使用 html href 即可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...

<a href="f?p=&APP_ID.:2:&SESSION.">Go to page 2!</a>带您到第 2 页...