Previous |
Next |
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 VARCHAR2);
Parameters
Table: PRINT_ESCAPED_VALUE Parameter describes the parameters available in the PRINT_ESCAPED_VALUE procedure.
PRINT_ESCAPED_VALUE Parameter
Parameter | Description |
---|---|
|
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="'||l_name||'" id="'||p_item_name||'" value="'); print_escaped_value(p_value); sys.htp.prn('">');