What are different authentication types. How do you
retrieve user id in case of windows authentication?
Answers were Sorted based on User's Feedback
Answer / lakal govind.
There are mainly three types of authentication types in
.NET. These are
i) Forms Authentication.
ii) Windows Authentication.
iii)Passport Authentication.
Is This Answer Correct ? | 28 Yes | 6 No |
Answer / shilpa
to retrieve user id in case of windows authentication
if from a ASP.Net page following code
Dim username As String
username = User.Identity.Name
if it is from a class or business object following code
Dim User As System.Security.Principal.IPrincipal
User = System.Web.HttpContext.Current.User
Is This Answer Correct ? | 12 Yes | 1 No |
Answer / sheik
Windows Authentication
2. IIS Authentication.
3. Forms Authentication.
4. Passport Authentication.
Is This Answer Correct ? | 7 Yes | 2 No |
Answer / pranabjyoti saikia
Different types windows authentications are
1. Windows Authentication
2. IIS Authentication.
3. Forms Authentication.
4. Passport Authentication.
Is This Answer Correct ? | 7 Yes | 4 No |
Answer / sesu
Two types of authentications.
1. Windows Authentication
2. Mixed Authentication
Is This Answer Correct ? | 2 Yes | 21 No |
What are different options to store state in ASP.NET applications?
What is the max size of textbox?
how to call constructor in abstract class
What is datagrid?
what are the diffrences between windows application and windows service?
Suppose I am implementing one windows form. I am inserting some values into ms access. In that table 5 columns there. But I want to insert three columns only. When I am clicking another button then other two values also insert into that table?
Name the property which is used to specify the source from where the crystal reports would be accessed.
How to create a set up in vb.net for desktop application please say steps with examples?
What is form and meaning?
Are windows forms still used?
what are the types of combo box?
How to split a column header in gridview using c#.net?