This procedure calls owa_util.redirect_url
to tell the browser to redirect to a new URL. Afterwards, it automatically calls apex_application.stop_apex_engine
to abort further processing of the Application Express application.
Syntax
APEX_UTIL.REDIRECT_URL ( p_url in varchar2, p_reset_htp_buffer in boolean default true );
Parameters
Table 35-80 REDIRECT_URL Parameters
Parameter | Description |
---|---|
|
The URL the browser requests. |
|
Set to |
Example
The following example tells the browser to redirect to http://www.oracle.com and immediately stops further processing.
apex_util.redirect_url ( p_url => 'http://www.oracle.com/' );
Parent topic: APEX_UTIL