Results 1 to 2 of 2

Thread: cookies

  1. #1

    Thread Starter
    Member
    Join Date
    Jan 2001
    Posts
    33
    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

  2. #2
    Hyperactive Member compuGEEK's Avatar
    Join Date
    May 1999
    Location
    Mpls,MN,USA
    Posts
    281
    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")

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width