authentication and authorization in asp.net c# with example

82

authentication and authorization in asp.net c# with example -

Response.Write(User.Identity.Name +"<br>");
Response.Write(User.Identity.AuthenticationType + "<br>");
Response.Write(User.Identity.IsAuthenticated + "<br>");
Response.Write(User.IsInRole("Administrators") + "<br>"); 

Comments

Submit
0 Comments