EncodeEscapeCodes Method
See Also Example Applies To
Returns a string with the special characters encoded with HTML escape codes.
Syntax
object.EncodeEscapeCodes (Data)
| Part |
Description |
| object |
An object expression that evaluates to an XMLRPCUtility object. |
| Data |
Required. The string to be converted. |
Remarks
An example of the code fragment and output needed is below:
Dim X as New XMLRPCUtility ' The Utility object
Print X.EncodeEscapeCodes("<example>")
<example>
|