Mysterious cookie problem

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Mysterious cookie problem

    BACKGROUND

    My ASP.NET app has been running (or rather available) on a server for
    about 4 months now. The server is at
    [url]http://www.webhost4life.com/[/url]
    They don't add cookies to any of the sites they host.

    The app was created with VS.NET v.7. And the server is running Windows
    2000 Advanced Server.

    My app does not use cookies but it does use in-process session state.

    My IE6 is set to prompt when a website wants to set a cookie.

    MYSTERIOUS PROBLEM

    Just in the last couple of weeks I've noticed that my web app wants to
    set a cookie. It did not do this before. So I click allow cookie.

    Then I go to the cookies folder and there is no cookie for my website.
    That's good because my site does not use cookies.

    So what's going on here? The only system changes have been the usual
    Windows updates, on both my PC and the server.

    Why does the cookie dialog appear? Does anyone know what's going on
    here?

    Thanks for your help.
    Bruce W.1 Guest

  2. Similar Questions and Discussions

    1. Cookie Problem -Please Help
      Hello Everyone, I have a little problem. I want to create a cookie and if the user deciced to close the browser, I want that cookie deleted...
    2. PHP Cookie Problem
      Hi guys, I've got a section of my site where I've integrated a rating script. Seems to work okay expect what I've noticed is that with the...
    3. Cookie problem
      I like cookies, you can send me some "Onur Bozkurt" <onur.bozkurt@softhome.net> wrote in message news:eC9xJP7PDHA.1624@tk2msftngp13.phx.gbl...
    4. problem with cookie
      Jose wrote: i may be wrong on this, but i would be surprised if a cookie's key is allowed to have the apostrophe character in it. Check your...
    5. Problem with IE and Cookie
      Hi Friends, I created a cgi program which make use of the cookies to check user authentication. And for creating cookies i make use of...
  3. #2

    Default Re: Mysterious cookie problem

    Hello,

    | My app does not use cookies but it does use in-process session state.
    ....
    | Just in the last couple of weeks I've noticed that my web app wants to
    | set a cookie. It did not do this before. So I click allow cookie.
    ---
    | Then I go to the cookies folder and there is no cookie for my website.
    | That's good because my site does not use cookies.
    |
    | So what's going on here?

    For managing session state are used cookies with no expiration date
    specified. These are "per-session" cookies, which are not stored to disk.
    Are kept in memory and disappears web browsing session ends.

    IMHO, windowsupdate on your computer caused your browser to ask for
    permission of using these non-permanent cookies.

    --
    Michal A. Valasek, Altair Communications, [url]http://www.altaircom.net[/url]
    Please do not reply to this e-mail, for contact see [url]http://www.rider.cz[/url]


    Michal A. Valasek Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139