- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
嗯...我真的无法理解这个。
在 web.config 我有:
<connectionStrings>
<clear /> <!--- need this to prevent using LocalSqlServer from machine.config or somewhere becouse it is not present when when publish to hosting -->
<add name="DefaultConnection" providerName="System.Data.SqlClient" connectionString="Data Source=.\SQLEXPRESS;Initial Catalog=aspnet-Goaly-20120615111028;Integrated Security=SSPI" />
</connectionStrings>
<membership defaultProvider="DefaultMembershipProvider">
<providers>
<!-- I think this line is telling asp.net that I want the membership working agains defaultconnection, and not LocalSqlServer connection????? -->
<add name="DefaultMembershipProvider" type="System.Web.Providers.DefaultMembershipProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" connectionStringName="DefaultConnection" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/" />
</providers>
</membership>
The connection name 'LocalSqlServer' was not found in the applications configuration or the connection string is empty.
最佳答案
它在以下帖子中提到 forumsasp
在成员资格元素和 rolemangaer 元素(如果存在于您的 web.config 中)中的连接字符串之前添加 </clear>
标记将解决该问题。
<membership defaultProvider="DefaultMembershipProvider">
<providers>
<clear/> <!-- solves the issue -->
<add name="DefaultMembershipProvider" type="System.Web.Providers.DefaultMembershipProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" connectionStringName="DefaultConnection" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/" />
</providers>
</membership>
关于asp.net - DefaultConnection 和成员资格 - localsqlserver 和 defaultconnection 之间的连接是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11801471/
嗯...我真的无法理解这个。 在 web.config 我有: 和 但随后它在提示: The connection name 'LocalS
我是 Asp.Net MVC 新手。我的问题是如何更改 web.config 文件中的 DefaultConnection 以使用我的 Entity Framework 连接字符串。我的目标是整个应用
我有一个多线程应用程序,它使用 OracleDriver.defaultConnection() 连接到数据库。这行代码在多个代码块中使用,这些代码块由不同的线程访问。我收到错误:检测到 Java 线
在我的应用程序 (ASP.NET WebForms 4.5) 中,我使用自定义成员资格提供程序和具有自定义成员资格方案的 MSSQL 数据库。创建新用户时,我只需调用 dc.Users.Add(new
我正在尝试使用 Azure Key Vault 存储 Entity Framework 的 Web API 连接字符串。理想情况下,我希望避免将 Key Vault nuget 包与我的数据访问代码耦
过去几个月我一直在使用 MVC5 和 Entity Framework 6。我已将我的主要模型/业务逻辑和“迁移”分离到一个单独的程序集,并在我的 Web 应用程序中引用它。迁移一直运行良好。 今天我
当我使用 Visual Studio 通过“发布为 Azure WebJob”部署项目时,我收到标题中的错误。 最佳答案 通过从 .pubxml 文件中删除以下标记来修复。删除标记后,您必须退出/重新
背景: 我们使用的是 Oracle SQL 12c 企业版。 Oracle SQL 数据库在 native 本地运行,我们可以使用“Oracle SQL Developer”创建表并运行查询。 问题:
我正在向 Azure 发布一个 Web 应用程序,它有两个数据库连接字符串。 MyApp 数据库连接正在运行。 Entity Framework 使用它来提供站点功能。因此,该连接
我正在向 Azure 发布一个 Web 应用程序,它有两个数据库连接字符串。 MyApp 数据库连接正在运行。 Entity Framework 使用它来提供站点功能。因此,该连接
我是一名优秀的程序员,十分优秀!