Returns a hashtable object containing any cookie objects sent by the client to the specified request object or returns the cookie associated with the given cookie identifier using the specified request object.
Syntax
Cookies( request )
request.Cookies( )
Parameters
request
|
the request object to use.
|
Returns
hashtable
|
the hashtable object containing any cookie objects sent by the client.
null if none.
|
Notes
This method is only accessible by ss and by iScript Servlet.
Example
cookies = Request( ).Cookies( )
Syntax
Cookies( request , name )
request.Cookies( name )
Parameters
request
|
the request object to use.
|
name
|
the name of the cookie.
|
Returns
cookie
|
the cookie object associated with the given cookie name.
null if none.
|
Notes
This method is only accessible by ss and by iScript Servlet.
Example
println( "id: " + Request( ).Cookies( id ) )
|