Sun
ONE Active Server Pages Product Home Page Developer Site Version
 

ContentsPreviousNextIndex



Examples: ASP Response Object Cookies Collection

The following example shows how you can set cookie values and their attributes:

<% 
Response.Cookies("Type") = "Chocolate Chip" 
Response.Cookies("Type").Expires = "July 31, 1997" 
Response.Cookies("Type").Domain = "msn.com" 
Response.Cookies("Type").Path = "/www/home/" 
Response.Cookies("Type").Secure = FALSE
%> 


ContentsPreviousNextIndex