URL encoding in workflow parameters in VB.Net

Build 1501 on 14/Nov/2017  This topic last edited on: 19/Jun/2015, at 16:42

You need to URL encode some characters in workflow parameters in VB.Net, e.g. colon :, semicolon ;, ampersand & etc.

Colon: %3A

Semicolon: %3B

Ampersand: %26

Use the encoding as explained here http://www.w3schools.com/tags/ref_urlencode.asp.