Control authorization permissions in an ASP.NET application
Article
This update introduces how to apply the <location> tag to the Web.config file to configure access to a specific file and folder.
Original product version: ASP.NET Original KB number: 316871
Summary
Use this step-by-step guide to apply the <location> tag to the Web.config file to configure access to a specific file and folder.
When using forms-based authentication in ASP.NET applications, only authenticated users are granted access to pages in the application. Unauthenticated users are automatically redirected to the page specified by the loginUrl attribute of the Web.config file where they can submit their credentials. In some cases, you may want to permit users to access certain pages in an application without requiring authentication.
Request any page in your application to be redirected to Logon.aspx automatically.
In the Web.config file, type or paste the following code.
This code grants all users access to the Default1.aspx page and the Subdir1 folder.
XML
<configuration><system.web><authenticationmode="Forms" ><formsloginUrl="login.aspx"name=".ASPNETAUTH"protection="None"path="/"timeout="20" ></forms></authentication><!-- This section denies access to all files in this application except for those that you have not explicitly specified by using another setting. --><authorization><denyusers="?" /></authorization></system.web><!-- This section gives the unauthenticated user access to the Default1.aspx page only. It is located in the same folder as this configuration file. --><locationpath="default1.aspx"><system.web><authorization><allowusers ="*" /></authorization></system.web></location><!-- This section gives the unauthenticated user access to all of the files that are stored in the Subdir1 folder. --><locationpath="subdir1"><system.web><authorization><allowusers ="*" /></authorization></system.web></location></configuration>
Users can open the Default1.aspx file or any other file saved in the subdir1 folder in your application. They won't be redirected automatically to the Logon.aspx file for authentication.
Repeat Step 3 to identify any other pages or folders for which you want to permit access by unauthenticated users.