1

我使用这个 Web.Config 文件。如果我使用网站管理工具作为“网站”,一切都很好。

如果我使用与“Web 应用程序”相同的脚本,我会在“安全”选项卡中收到错误消息。错误:

“您选择的数据存储存在问题。这可能是由于服务器名称或凭据无效,或权限不足造成的。也可能是未启用角色管理器功能。单击下面的按钮重定向到您可以在其中选择新数据存储的页面。

以下消息可能有助于诊断问题:无法开始监视对“Z:\MSDOS_DOCUMENTS_SETTINGS\SWN-Working\Projects-Cms\Cms-Application-ProtoTypes\Admin-RolesPermissions\ProtoType-Rules\ProtoType-Rules”的更改。"

我真的不知道我做错了什么。你能给我建议吗?谢谢你的支持!

<?xml version="1.0"?>

    <!--
      For more information on how to configure your ASP.NET application, please visit
      http://go.microsoft.com/fwlink/?LinkId=169433
      -->

    <configuration>
        <connectionStrings>
            <add name="CmsConnectionString"
                 connectionString="Data Source=.;Initial Catalog=DbCmsWebsiteTest;Integrated Security=SSPI" />
        </connectionStrings>

        <system.web>
            <compilation debug="true" targetFramework="4.0"/>

            <roleManager enabled="true" cacheRolesInCookie="true">
                <providers>
                    <clear/>
                    <add name="AspNetSqlRoleProvider"
                         connectionStringName="CmsConnectionString"
                         applicationName="/"
                         type="System.Web.Security.SqlRoleProvider, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
                </providers>
            </roleManager>

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

        </system.web>
    </configuration>
4

1 回答 1

0

我找到了解决我的问题的方法。解决方案在这里 http://support.microsoft.com/kb/317955

于 2010-09-06T16:47:20.680 回答