Deprecated: Assigning the return value of new by reference is deprecated in /home/tryangle/public_html/blog/wp-includes/cache.php on line 36

Deprecated: Assigning the return value of new by reference is deprecated in /home/tryangle/public_html/blog/wp-includes/query.php on line 21

Deprecated: Assigning the return value of new by reference is deprecated in /home/tryangle/public_html/blog/wp-includes/theme.php on line 507

Deprecated: Assigning the return value of new by reference is deprecated in /home/tryangle/public_html/blog/wp-content/plugins/codesnippet/codesnippet.php on line 248
Tryangled Dev » Blog Archive » When and how do I use windows authentication in ASP.NET 2.0?

When and how do I use windows authentication in ASP.NET 2.0?

Your ASP.NET application should use Windows authentication when your users have Windows accounts that can be authenticated by a server. The accounts can be local Windows accounts or domain accounts.
To use Windows authentication in ASP.NET in conjunction with Integrated Windows authentication in IIS
* Configure the virtual directory on IIS to disable anonymous access and configure it to use Integrated Windows authentication alone (by default anonymous access is enabled).
* Configure your application’s Web.config for Windows authentication (the default)

<authentication mode=”Windows”>

Posted by Mahesh ( Tryangled )

Leave a Reply

You must be logged in to post a comment.