forms authentication-but do not write cookie to client machine

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

  1. #1

    Default forms authentication-but do not write cookie to client machine

    Hi I am trying to set up an asp.net application where I want the client to have to provide password and user name everytime so do not want to put the cookie file on the client machine. Just wondering if there is a way to do this? I am thinking of using forms authentication, I will be using a database to verify passwords.
    Also I am setting priority levels for each person, also being stored in a database. I need to restrict specific links based on a persons' priority level, can this be done and any suggestions or example code would be appreciated. Thanks.
    --
    Paul G
    Software engineer.
    Paul Guest

  2. Similar Questions and Discussions

    1. forms authentication cookie not timeout
      I customized the cookie generation in forms authentication so I can keep extra data in the cookie. but the problem now is that my forms...
    2. Forms Authentication - Cookie not being generated...
      Hi there everyone, I'm new to this newsgroup so I hope you don't mind me just asking a question, but it has been working me for way to long now and...
    3. Forms Authentication Cookie Does Not Expire
      On my asp.net application, suddenly the forms authentication cookies for clients have quit expiring. This results in users being able to access the...
    4. Forms Authentication Cookie via IP Only
      Hello, I have a problem with the forms authentication cookie when accessing my site via http://computername/application, however when I access...
    5. authentication cookie vs session cookie
      Hi, What are the differences between authentication and session cookies? In my web.config file, I set the cookieless attribute for the...
  3. #2

    Default RE: forms authentication-but do not write cookie to client machine

    Have a look at

    [url]http://support.microsoft.com/default.aspx?scid=kb;EN-US;301240[/url]

    and

    [url]http://support.microsoft.com/default.aspx?scid=kb;en-us;311495[/url]

    It gives pretty clear step by step instructions on how to implement what you are trying to do.
    --
    Edmond Goon

    "As far as the laws of mathematics refer to reality, they are not certain; and as far as they are certain, they do not refer to reality." - Einstein


    "Paul" wrote:
    > Hi I am trying to set up an asp.net application where I want the client to have to provide password and user name everytime so do not want to put the cookie file on the client machine. Just wondering if there is a way to do this? I am thinking of using forms authentication, I will be using a database to verify passwords.
    > Also I am setting priority levels for each person, also being stored in a database. I need to restrict specific links based on a persons' priority level, can this be done and any suggestions or example code would be appreciated. Thanks.
    > --
    > Paul G
    > Software engineer.
    Edmond Goon 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