Returns the x-www-form-urlencoded decoded form of the specified string.
Syntax
encode( response , string )
response.encode( string )
Parameters
response
|
the response object to use.
|
string
|
the string to encode.
|
Returns
string
|
the string x-www-form-urlencoded encoded form of the given string.
|
Notes
This method is only accessible by ss and by iScript Servlet.
Example
eValue = Response( ).encode( value )
|