|
get_login_link function |
|
Contained in package wwsec_app_priv. Call this function to provide applications with a hyperlink to the user Login Page. Use this function to render a link to the user Login Page. Notes:
function get_login_link (
) return varchar2; |
|
Version: Oracle Portal 3.0.6.6.5 or later |
|
|
Parameters: |
|
|
p_nls_link_text |
Optional text that is used as the hyperlink text if the format CONTENT_TYPE_HTML is specified. Note: This text should be in the NLS language requested by the user. Datatype: in varchar2 |
|
p_image_filename |
An optional image filename and path for inclusion in an image tag to use with the Login link. The default (null) results in a simple text link. Note: When this parameter is specified, the nls_link_text is used as alternative (mouseover) text, i.e. Alt text. Datatype: in varchar2 |
|
p_requested_url |
An optional parameter indicating the URL that you want to be redirected to upon successful authentication. Note: This parameter allows an application to specify a page to be redirected to upon successful authentication. Datatype: in varchar2 |
|
Returns: This function returns anchor tags and a hyperlink reference to the URL. Exceptions: This function raises no exceptions. If an error occurs, it returns null. Example: htp.htmlopen; htp.bodyopen; htp.p (
); htp.bodyclose; htp.htmlclose; |
|
|
The PL/SQL API Reference is part of the Portal Developer Kit on Portal Studio |