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
    s$ = “c”
    i# = DiskFree(s$)
    MsgBox “Free disk space on drive ‘” & _
                                 s$ & “’ is: “ & i#
End Sub