Folder based authorization
-
Hi All, I have an ASP.NET Web application. I want to allow public access to this. In this application i have an Admin subfolder which i want to restrict to a few users in my server(The permitted users should be able to access the admin aspx files after entering the username and password). How can i do this ? IIS or NTFS permisssions is preferred. Thanks Mahesh Varma.
-
Hi All, I have an ASP.NET Web application. I want to allow public access to this. In this application i have an Admin subfolder which i want to restrict to a few users in my server(The permitted users should be able to access the admin aspx files after entering the username and password). How can i do this ? IIS or NTFS permisssions is preferred. Thanks Mahesh Varma.
Look at the authentication options in web.config. Set the public folder to None, and the Admin folder to whatever auth method you want, with the appropriate user list set. -- Ian Darling