Programming Reference Manual
 
Syntax
 
Web2Text(param$)
 
Description
Converts a parameter string, originating from URL reference (by a GET method) into a valid text. 
 
Parameter
Description
param$
A string that must be converted from the URL parameterstring into a readable text.
See Also
Example
Sub Main
Dim sParam$
Dim sReadable$
 
' Decode a URL parameter value as it would arrive in an HTTP GET request.
sParam$ = "Caf%E9+Br%FBl%E9"
sReadable$ = Web2Text(sParam$)
 
Debug.Print "Original parameter: "; sParam$
Debug.Print "Decoded value: "; sReadable$
End Sub