HTML Encode/Decode Action & ChrW() Support in VBScript

Nice to have an HTML Encode/Decode Action...

Also in my workaround to create a VBScript function to do the encode/decode it turns out the VBScript engine doesn't have support for ChrW() - which accepts unicode values for conversion into characters...

I suppose while your at it, you could a URI Encode/Decode option too...

Hi TJ

I will add this to the Todo list. In the mean time you can use the following javascript functions to do this for you:

Escape (encode) - http://www.w3schools.com/jsref/jsref_escape.asp
Unescape (decode) - http://www.w3schools.com/jsref/jsref_unescape.asp

Encode URI - http://www.w3schools.com/jsref/jsref_encodeuri.asp
Decode URI - http://www.w3schools.com/jsref/jsref_decodeuri.asp

Hope this helps.

Regards,
Steve

Thanks for the links, I've already worked around the issue, but the links may be helpful in the future


TJ