Error---Access is denied

 today,i'am trying to building Myfirst MVC demo on my little PC,luckly the errors were flying to me , but i'am not beat up myself up about it .i'am try to told myself ,A ha ,that's mean : i gona gown up more quiekly! Haha!so,i was so happy to met all the error what i never met 。

  Error #1:

   Server Error in '/' Application.

Access is denied.

Description: An error occurred while accessing the resources required to serve this request. The server may not be configured for access to the requested URL.

Error message 401.2.: Unauthorized: Logon failed due to server configuration.  Verify that you have permission to view this directory or page based on the credentials you supplied and the authentication methods enabled on the Web server.  Contact the Web server's administrator for additional assistance.

Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.34274

   Solution:

   the answer if came from the URL:http://stackoverflow.com/questions/20683522/an-error-occurred-while-accessing-the-resources-required-to-serve-this-request

6 down vote

I would suggest you to first allow all users in WebConfig

<system.web>
    <authorization>    
        <allow users="*" />
    </authorization>    
</system.web>

    Final Solution:

      Find the Web.config in your Program. which located in the foundation (he last file)

Error---Access is denied_第1张图片


 Result:

Error---Access is denied_第2张图片


   

 

你可能感兴趣的:(Error---Access is denied)