User details in authenticated page

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

  1. #1

    Default 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 header of every page, and it contains a
    label control I want to use to display username of currently logged user.
    Do I have this info available in every page? How?

    Thank you.


    NWx Guest

  2. Similar Questions and Discussions

    1. accesing AD from an ASP.NET app when user has been authenticated via AD cert. mapping
      hello forum! I am developing an ASP.NET web application which interacts with AD. Client/User authentication must be via AD certificate mapping,...
    2. 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...
    3. 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...
    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. 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...
  3. #2

    Default Re: User details in authenticated page

    If your forms authentication is designed properly, then the HttpContext.User
    property contains an IPrincipal object with an Identity property whose Name
    property should be the name of the user. Thus you should be able to do:

    Page.User.Identity.Name or Context.User.Identity.Name to get the user's name
    from wherever in your code.

    Joe K.

    "NWx" <test@test.com> wrote in message
    news:u3KHyaK8DHA.2760@TK2MSFTNGP09.phx.gbl...
    > Hi,
    >
    > I implement forms authentication, and once authenticated, I want to
    display
    > user name in a control.
    > I created a user control, placed on header of every page, and it contains
    a
    > label control I want to use to display username of currently logged user.
    > Do I have this info available in every page? How?
    >
    > Thank you.
    >
    >

    Joe Kaplan \(MVP - ADSI\) 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