Terminating a authenticated user

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

  1. #1

    Default Terminating a authenticated user

    Hi,

    1. How can I "terminate" an authenticated user? (I would like the server to
    redirect the user to the login page again. I'm using "forms
    authentication".)

    2. Is it possible to enumerate all sessions on a IIS? Is it possible to
    enumerate all authenticated users on a IIS (without the use of global.asax
    and session_start and session_end)?

    /Kristofer


    Kristofer Liljeblad Guest

  2. Similar Questions and Discussions

    1. How to allow authenticated user to impersonate
      If you are running under W2000, you must add the "Act as part of the operating system" privilege to the account that will try to impersonate. On XP...
    2. Can I force 401 error when user not authenticated?
      Currently I have succesfully implemented role-based folder security using roles and web.config in each folder. This works great - if a user is not...
    3. User details in authenticated page
      Hi, I implement forms authentication, and once authenticated, I want to display user name in a control. I created a user control, placed on...
    4. impersonating windows authenticated user?
      I have a asp.net web application that i wrote for internal use in my company. The problem i'm having is being able to test the application as other...
    5. script not terminating on user abort
      Hi! The connection_* function don't seem to work for me and I can no longer determine when the user has aborted the script. When I close the...
  3. #2

    Default Re: Terminating a authenticated user

    You can use SignOut Method.

    "Kristofer Liljeblad" <kristoferdontspam@mapaz.com> wrote in message
    news:uZb7CVwPDHA.2432@TK2MSFTNGP10.phx.gbl...
    > Hi,
    >
    > 1. How can I "terminate" an authenticated user? (I would like the server
    to
    > redirect the user to the login page again. I'm using "forms
    > authentication".)
    >
    > 2. Is it possible to enumerate all sessions on a IIS? Is it possible to
    > enumerate all authenticated users on a IIS (without the use of global.asax
    > and session_start and session_end)?
    >
    > /Kristofer
    >
    >

    Onur Bozkurt Guest

  4. #3

    Default Re: Terminating a authenticated user

    As for terminating an authenticated user, or "logging out", look at:

    System.Web.Security.FormsAuthentication.SignOut();

    --
    James J. Foster, DotNetCoders
    [url]http://www.dotnetcoders.com[/url]


    "Kristofer Liljeblad" <kristoferdontspam@mapaz.com> wrote in message
    news:uZb7CVwPDHA.2432@TK2MSFTNGP10.phx.gbl...
    > Hi,
    >
    > 1. How can I "terminate" an authenticated user? (I would like the server
    to
    > redirect the user to the login page again. I'm using "forms
    > authentication".)
    >
    > 2. Is it possible to enumerate all sessions on a IIS? Is it possible to
    > enumerate all authenticated users on a IIS (without the use of global.asax
    > and session_start and session_end)?
    >
    > /Kristofer
    >
    >

    James J. Foster Guest

  5. #4

    Default Re: Terminating a authenticated user

    Guess I wasn't as clear as I thought ;-) Thanks for the quick reply anyway.

    I knew about the SignOut method, but how do I sign out another user. I have
    this administrative tool that I've coded. I would like to sign out all or
    some members at some times.

    So I guess I can not remove the authentication ticket (cause I don't have
    access to it). I have to do it on the server side, but how?

    /Kristofer

    "Onur Bozkurt" <onur.bozkurt@softhome.net> wrote in message
    news:%23vASmZwPDHA.2476@TK2MSFTNGP10.phx.gbl...
    > You can use SignOut Method.
    >
    > "Kristofer Liljeblad" <kristoferdontspam@mapaz.com> wrote in message
    > news:uZb7CVwPDHA.2432@TK2MSFTNGP10.phx.gbl...
    > > Hi,
    > >
    > > 1. How can I "terminate" an authenticated user? (I would like the server
    > to
    > > redirect the user to the login page again. I'm using "forms
    > > authentication".)
    > >
    > > 2. Is it possible to enumerate all sessions on a IIS? Is it possible to
    > > enumerate all authenticated users on a IIS (without the use of
    global.asax
    > > and session_start and session_end)?
    > >
    > > /Kristofer
    > >
    > >
    >
    >

    Kristofer Liljeblad 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