
|
email this FAQ to a colleague
Q:
The life of the cookie is only for the current IE
session. If I shut down IE and re-open it, the cookie is gone. How do I control the expiration date of the cookie ?
A:
After you set the cookie, also set the expiration date. Here is how to do both:
Response.Cookies("mycookie") = "Y"
Response.Cookies("mycookie").Expires = "December 31, 1999"
- Wayne Berry
|
Articles
|
|
|
Jul 5, 2000 - Point the Way with Graphics
|
|
|
IImages may also be used via the ASP Request Object. This article will
show you how the use the Request.Form("ImageName.X") property for such tasks as
record navigation (e.g. << Record 1 of 15 >>) or column headings for HTML tables
may use images rather than buttons.
type = "SUBMIT") are the common mechanism to allow the user to request actions from
your Web site. Images may also be used via the ASP Request Object. This article will
show you how the use the Request.Form("ImageName.X") property for such tasks as
record navigation (e.g. << Record 1 of 15 > >) or column headings for HTML tables
may use images rather than buttons.
[Read This Article] [Top]
|
|
|