37.42 PRINT_ESCAPED_VALUE Procedure Signature 2

This procedure outputs the value in an escaped form and chunks big strings into smaller outputs.

Syntax

APEX_PLUGIN_UTIL.PRINT_ESCAPED_VALUE (
    p_value IN apex_session_state.t_value );

Parameters

Table 37-62 PRINT_ESCAPED_VALUE Parameter

Parameter Description
p_value Text which should be escaped and then printed to the HTTP buffer.

Example

Prints a hidden field with the current value of the page item.

sys.htp.prn('<input type="hidden" name="'||p_item.name||'" id="'||p_item.name||'" value="');
apex_plugin_util.print_escaped_value( p_param.session_state_value );
sys.htp.prn('">');