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 url to encode.
|
Returns
string
|
the x-www-form-urlencoded encoded form of the specified url.
|
Notes
This method is only accessible by ss and by iScript Servlet.
Example
encoded_url = Response( ).encode( url )
|