Analysis of ASP. NET Access Permissions

Source: Internet
Author: User

. Aspx page form code:

 
 
  1. <form id="form1" runat="server"> 
  2. <div> 
  3. <asp:Button ID="Button1" runat="server" Text="Button" OnClick=
    "Button1_Click" /><asp:FileUpload ID="FileUpload1" 
  4. runat="server" /> 
  5. </div> 
  6. </form> 


Click Event code of Button1:

 
 
  1. this.FileUpload1.SaveAs(Server.MapPath(".")); 

The following error occurs:

The server error in the "/linkupload" application.
Access to path "D: \ HL \ upload/Download \ linkupload" is denied.

Note: An unhandled exception occurs during the execution of the current Web request. Check the stack trace information for details about the error and the source of the error in the code.

Exception details: System. UnauthorizedAccessException: Access to path "D: \ HL \ upload/Download \ linkupload" is denied.

ASP. NET. Consider granting the ASP. NET Request identity the permission to access this resource. ASP. NET has a base process ID used when the application is not simulated (typically, {MACHINE} \ ASPNET on IIS 5 and Network Service on IIS 6 ). If the application is simulating through <identity impersonate = "true"/>, the identity will be an anonymous user (usually IUSR_MACHINENAME) or an authenticated user.

To grant ASP. NET access permissions to a file, right-click the file in resource manager, select "properties", and select the "Security" tab. Click Add to add an appropriate user or group. Highlight the ASP. NET account, and select the corresponding ASP. NET access permission box.

Source error:

The source code that generates this unprocessed exception is displayed only when compilation is performed in debug mode. To enable this feature, Perform one of the following steps and request the URL:

Add a "Debug = true" command at the top of the file that generated the error. For example:

 
 
  1. <% @ PageLanguage="C #" Debug="True"%> 
  2. Or:
  3. 2. Add the following section to the application configuration file:
  4. <Configuration> 
  5. <System. web> 
  6. <Compilation Debug="True"/> 
  7. </System. web> 
  8. </Configuration> 

Note that the second step will compile all the files in the given application in debug mode. The first step will only compile the specific file in debug mode.

Important: running an application in debug mode will produce memory/performance system overhead. Before deploying a production solution, make sure that application debugging is disabled. The above describes ASP. NET access permissions.

  1. ASP. NET TypeConverter
  2. Analysis on TypeResolver of ASP. NET
  3. Define JavaScriptConverter in ASP. NET
  4. How to replace Sys. Services in ASP. NET
  5. Use Profile Service of ASP. NET AJAX

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.