Programming Reference Manual
 
Syntax
 
object.SubValues
 
Description
Collection of HttpVariable Objects that represent the subvalues of a cookie.
 
Part
Description
object
Evaluates to a Cookie object.
 

Data Type

Collection of httpVariables with .Name and .Value properties.

Remarks

Use this property to access the values of cookies that contain multiple values. For example, the following cookie contains multiple values:
Cookie1 = SubValue1 = "Val1" & SubValue2 = "Val2"
Use the Value property to access the entire value string (SubValue1 = "Val1" & SubValue2 = "Val2"). The Value property is also used for cookies that contain only one value.
 
See Also