Cookies Liability Issue

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

  1. #1

    Default Cookies Liability Issue

    After you determine that a user's browser is set not to use cookies when
    storing per user information in session, since you can't change to
    cookieless for that particular session (only in machine.config and
    web.config), what is the suggested alternative?

    Thanks in advance,

    Bob Hanson
    CEO
    Custom Programming Unlimited LLC

    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Robert Hanson Guest

  2. Similar Questions and Discussions

    1. need help on cookies
      Hi, I need some help on using cookies.. how to set secure flag on for cookies???
    2. Issue with Cookies not getting deleted even after setting a previous date in expires property
      I am using the following to delete the contents of a cookie Response.Cookies("maincookie").expires = DateAdd("d",-2,now) Response.redirect...
    3. Some cookies are being set, some aren't
      I've got a problem with cookies failing. Here's the setup- A staging server, RedHat Linux, with php 4.3 Main server, FreeBSD, also php 4.3 ...
    4. need help with cookies
      I need to grab cookies from a web page and pass those cookies back to the web page when needed. I downloaded the cURL program and was playing with...
    5. Cookies... Help Please !
      In article <2lg5ivcd5n5t8ao8fp2050rc65sei8uai7@4ax.com>, Fred < @> wrote: Does php allow this? I would use strcmp.
  3. #2

    Default Re: Cookies Liability Issue

    Users should configure their browser to allow session cookies - even if they
    chose to disallow other types of cookies.

    But you either have the option of using cookieless session state, or with
    cookies. You can't change that midstream.

    "Robert Hanson" <roberth@cpuandsimplepdm.com> wrote in message
    news:%23Ll25hLQDHA.304@tk2msftngp13.phx.gbl...
    > After you determine that a user's browser is set not to use cookies when
    > storing per user information in session, since you can't change to
    > cookieless for that particular session (only in machine.config and
    > web.config), what is the suggested alternative?
    >
    > Thanks in advance,
    >
    > Bob Hanson
    > CEO
    > Custom Programming Unlimited LLC
    >
    > *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    > Don't just participate in USENET...get rewarded for it!

    Marina Guest

  4. #3

    Default RE: Cookies Liability Issue

    Hello Bob,

    You could refer to
    [url]http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q175167[/url] for some
    other place to store state data.

    Hope it helps.

    Best regards,
    yhhuang
    VS.NET, Visual C++
    Microsoft

    This posting is provided "AS IS" with no warranties, and confers no rights.
    Got .Net? [url]http://www.gotdotnet.com[/url]
    --------------------
    !From: Robert Hanson <roberth@cpuandsimplepdm.com>
    !X-Newsreader: AspNNTP 1.50 (ActionJackson.com)
    !Subject: Cookies Liability Issue
    !Mime-Version: 1.0
    !Content-Type: text/plain; charset="us-ascii"
    !Content-Transfer-Encoding: 7bit
    !Message-ID: <#Ll25hLQDHA.304@tk2msftngp13.phx.gbl>
    !Newsgroups: microsoft.public.dotnet.framework.aspnet
    !Date: Wed, 02 Jul 2003 09:39:14 -0700
    !NNTP-Posting-Host: actionjackson133.dsl.frii.net 216.17.147.133
    !Lines: 1
    !Path: cpmsftngxa09.phx.gbl!TK2MSFTNGP08.phx.gbl!tk2msftn gp13.phx.gbl
    !Xref: cpmsftngxa09.phx.gbl microsoft.public.dotnet.framework.aspnet:31776
    !X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet
    !
    !After you determine that a user's browser is set not to use cookies when
    !storing per user information in session, since you can't change to
    !cookieless for that particular session (only in machine.config and
    !web.config), what is the suggested alternative?
    !
    !Thanks in advance,
    !
    !Bob Hanson
    !CEO
    !Custom Programming Unlimited LLC
    !
    !*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    !Don't just participate in USENET...get rewarded for it!
    !

    Yan-Hong Huang[MSFT] 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