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
Printable View
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
In ASP you could go like this:
:)Code:
to set a cookie value:
Response.Cookies("clientID") = 1234
to get a value:
MyVar = Request.Cookies("clientID")