Returns a hashtable object containing any cookies extracted from the given string using the specified request object.
Syntax
parseCookies( request , cookies )
request.parseCookies( cookies )
Parameters
request
|
the request object to use.
|
cookies
|
the x-www-form-urlencoded encoded string to parse.
|
Returns
hashtable
|
the hashtable object containing any cookie objects parsed.
null if none.
|
Notes
This method is only accessible by ss and by iScript Servlet.
Example
cookies = Request( ).parseCookies( eCookies )
|