0

새 프로젝트를 만들고 사이트에 로그인하려고하는데 (폼 인증을 사용함) 로그인하는 즉시이 오류가 발생합니다.RenderAction에서 액세스가 거부되었습니다.

Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)) 
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.UnauthorizedAccessException: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)) 

ASP.NET is not authorized to access the requested resource. Consider granting access rights to the resource to the ASP.NET request identity. ASP.NET has a base process identity (typically {MACHINE}\ASPNET on IIS 5 or Network Service on IIS 6 and IIS 7, and the configured application pool identity on IIS 7.5) that is used if the application is not impersonating. If the application is impersonating via <identity impersonate="true"/>, the identity will be the anonymous user (typically IUSR_MACHINENAME) or the authenticated request user. 

To grant ASP.NET access to a file, right-click the file in Explorer, choose "Properties" and select the Security tab. Click "Add" to add the appropriate user or group. Highlight the ASP.NET account, and check the boxes for the desired access. 

Source Error: 

Line 10: 
Line 11:  <div id="partialListOfAuctionsDiv"> 
Line 12:   @{ Html.RenderAction("PartialListOfAuctions"); } 
Line 13:  </div> 
Line 14: </fieldset> 

오류의 원인으로 강조되는 라인은 내가이 의미 할 수 있습니다 그것을 해결하는 방법을 무엇 아무 생각

@{ Html.RenderAction("PartialListOfAuctions"); } 

입니다. 어떤 도움이라도 대단히 감사하겠습니다.

감사합니다,

Sachin

답변

0

ASP.NET 프로세스가 웹 폴더에 물리적으로 액세스 할 수없는 것처럼 보인다. 권한이 부여되기 전에 사이트에 액세스 할 수 있다는 사실은 MVC가 그 전에 파일에 액세스 할 수 있음을 의미합니다. 이것은 로그인 한 후에 자격 증명이 변경된다는 것을 의미합니다. 이것은 가장이 켜져있을 때만 발생합니다. web.config에서이 줄을 찾습니다.

<identity impersonate="true" /> 
관련 문제