как добавить поставщика ролей в проект MVC 5 - PullRequest
0 голосов
/ 27 ноября 2018

enter image description here

<system.web>
<authentication mode="Forms">
  <forms name="myBusiness" defaultUrl="/" loginUrl="/Login" timeout="43200"/>
</authentication>
<roleManager enabled="true" defaultProvider="BusinessRoleProvider">
  <providers>
    <clear/>
    <add name="BusinessRoleProvider" type="MyBusiness.Utility.BusinessRoleProvider"/>
  </providers>
</roleManager>
<compilation debug="true" targetFramework="4.5"/>
<httpRuntime targetFramework="4.5"/>
<pages>

Вот мой файл web.config как ошибка, которая отображается при запуске проекта.кто-нибудь может помочь?

...