Programming Reference Manual
 
Syntax
 
Text2Web(text$)
 
Description
Converts a string into a web enabled parameterstring, suitable for URL referencing.
 
Parameter
Description
text$
A string that must be converted into the URL enabled parameterstring.
See Also
Example
Sub Main
Dim sSearchTerm$
Dim sEncoded$
 
' Build a query-string value from a term containing spaces and
' accented characters.
sSearchTerm$ = "Café Brűlé"
sEncoded$ = Text2Web(sSearchTerm$)
 
Debug.Print "Encoded: "; sEncoded$
Debug.Print "Decoded: "; Web2Text(sEncoded$)
End Sub