PDA

Click to See Complete Forum and Search --> : cookies


louby
Feb 14th, 2001, 10:14 AM
i have to get the cookie value from the HTTP response sent to you by
the server.
And i have to set the cookie value for all http requests you send to the server

in vb or asp

please help

compuGEEK
Feb 14th, 2001, 11:24 AM
In ASP you could go like this:



to set a cookie value:

Response.Cookies("clientID") = 1234

to get a value:

MyVar = Request.Cookies("clientID")



:)