我的要求是 1)创建一个角色并将用户添加到该特定角色。2)我有一个目录 Admin,其中包含一个 aspx 页面,只能由管理员访问 3)所以如果他尝试将任何 aspx 页面访问到文件夹中,我想将用户重定向到登录页面。
实现这个
我使用 Asp.net 成员资格来创建用户和角色以及制作登录表单的各种功能。问题是每次我需要打开 asp.net 配置以创建新用户并将该用户分配给特定角色时。如果我在实时站点上部署我的网站。那么我现在如何添加用户。
我正在列出我的网络配置文件
<configuration>
<connectionStrings>
<add name="ApplicationServices" connectionString="data source=.\SQLEXPRESS;Integrated Security=true;Initial Catalog=Web24;" providerName="System.Data.SqlClient"/>
</connectionStrings>
<system.web>
<compilation debug="true" targetFramework="4.0"/>
<authentication mode="Forms">
<forms loginUrl="~/WebForm1.aspx" timeout="2880"/>
</authentication>
<membership>
<providers>
<clear/>
<add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/"/>
</providers>
</membership>
<profile>
<providers>
<clear/>
<add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/"/>
</providers>
</profile>
<roleManager enabled="true">
<providers>
<clear/>
<add connectionStringName="ApplicationServices" applicationName="/" name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider"/>
<add applicationName="/" name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider"/>
</providers>
</roleManager>
</system.web>
<location path="Admin">
<system.web>
<authorization>
<deny users="?" />
<!--Deny all Anonymous (not logged in) users-->
<allow roles="Admin"/>
<!--Permit users in these roles-->
<deny users="*"/>
<!--Deny all users-->
</authorization>
</system.web>
</location>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
如果 Asp.net 会员资格不可能,那么我应该遵循什么其他方法来满足我的要求。感谢您的任何帮助。