Security Server Controls

  • Thread starter Thread starter n I c H o L a S
  • Start date Start date
N

n I c H o L a S

I am using the Login, LoginName, LoginStatus and LoginView controls in
my ASP.NET 2.0 website. I need to be able to control user access at a
more fine grained level in my C# code but I can not figure out how to
get the username of the current logged in user. None of the above
controls seem to expose the username as a property. Am I missing
something here is there a special way to get the username?
 
The Login Control has a UserName property..

You can also retrieve it by code after login

User.Identity.Name;
 
Back
Top