36.96 REDIRECT_URL Procedure
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 36-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