在我的Asp.net MVC4 Web应用程序中启用Role Manager

时间:2014-12-04 09:02:59

标签: c# asp.net-mvc-4 web-applications configuration role-manager

如何在MVC4应用程序中启用角色管理器? 我需要向我的应用程序用户添加角色,我需要有关如何正确执行此操作的摘要。

1 个答案:

答案 0 :(得分:1)

这就是我所需要的,希望能帮助他们。

要启用角色管理器,您需要将相应的标记添加到web.Config文件中,并且不要忘记更改enable =" tru" 在角色管理器标签中实现

您可以在以下位置找到ASP.Net应用程序的这些标记: C:\ Windows \ Microsoft.NET \ Framework \ v4.0.30319 \ Config \ machine.config file

<membership>
        <providers>
            <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="LocalSqlServer" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="true" applicationName="/" requiresUniqueEmail="false" passwordFormat="Hashed" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="7" minRequiredNonalphanumericCharacters="1" passwordAttemptWindow="10" passwordStrengthRegularExpression=""/>
        </providers>
    </membership>

    <profile>
        <providers>
            <add name="AspNetSqlProfileProvider" connectionStringName="LocalSqlServer" applicationName="/" type="System.Web.Profile.SqlProfileProvider, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
        </providers>
    </profile>

    <roleManager>
        <providers>
            <add name="AspNetSqlRoleProvider" connectionStringName="LocalSqlServer" applicationName="/" type="System.Web.Security.SqlRoleProvider, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
            <add name="AspNetWindowsTokenRoleProvider" applicationName="/" type="System.Web.Security.WindowsTokenRoleProvider, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
        </providers>
    </roleManager>