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"); } 

Я понятия не имею, что это может означать и как решить эту проблему. Любая помощь будет принята с благодарностью.

Спасибо,

Сэчин

ответ

0

Это выглядит так, как если процесс ASP.NET не имеет физического доступа к веб-папке. Тот факт, что вы можете получить доступ к сайту до авторизации, подразумевает, что MVC может получить доступ к файлам до этого; это означает, что его учетные данные меняются после входа в систему. Это происходит, как я полагаю, только при включении олицетворения. Найдите эту строку в своем web.config:

<identity impersonate="true" /> 
Смежные вопросы