Click to See Complete Forum and Search --> : Cookies
wasiq
Nov 6th, 2000, 08:13 PM
Hi,
How can I set and retrieve a cookie on a users compueter through my IIS application?
Serge
Nov 6th, 2000, 09:05 PM
If you use ASP then it's really easy.
'To set cookies (for example UserName and Password)
Response.Cookies("UserName") = "John Doe"
Response.Cookies("Password") = "1234"
'To retrieve Cookies (for the same UserName and Password)
Response.Write Request.Cookies("UserName")
Response.Write Request.Cookies("Password")
wasiq
Nov 6th, 2000, 09:57 PM
Thanks!!!
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.