Methods of windows-based authentication - C#.NET

Explain the methods of windows-based authentication

Anonymous authentication gives access to read-only areas of the Web site which do not need any username and password.

Basic Authentication It is done through IIS. This is based on the windows user accounts. When using Basic authentication, the browser lets the user to enter the username and password.

Digest authentication allows sending hash or digesting over the network rather than the plain text as in the case of basic authentication.

Integrated Windows authentication- It is based on users having Windows domain accounts. This type of authentication prevents from passing the password across the network. It is considered to be the best authentication system over intranet.
How to create windows forms using visual inheritance - C#.NET
Explain how to create windows forms using visual inheritance - Create a windows form called the basewindow...
Key events in the lifecycle of the form - C#.NET
Explain the key events in the lifecycle of the form - Load: fired when form is first loaded in the application...
Steps to create menus - C#.NET
.MenuItem item1=new MenuItem();....
Post your comment