互联网应用

时间:2013-04-03 20:41:53

标签: authentication asp.net-mvc-4

默认的ASP.NET MVC 4项目,其中包含使用表单身份验证的帐户控制器,但此身份验证在我的服务器上的IIS 7.5上出现此错误。

A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 50 - Local Database Runtime error occurred. Cannot create an automatic instance. See the Windows Application event log for error details.) 

我怎么能解决这个问题,因为我无法在课堂上找到任何联系。

2 个答案:

答案 0 :(得分:1)

默认的MVC 4项目依赖于IIS Express和LocalDB,生成的LocalDB存储在App_Data文件夹中。

但是,在将项目更改为在完整IIS下运行时,建议您切换到使用SQL Express。为此,您需要创建一个数据库并设置相关的连接字符串。假设您的应用程序具有相关权限,并且WebSecurity.InitializeDatabaseConnection将autoCreateTables设置为true,则将自动创建相关表。

默认数据库初始化是通过我们可以在Filters / InitializeSimpleMembershipAttribute.cs中找到的InitializeSimpleMembershipAttribute完成的,然后将此属性应用于AccountController。

答案 1 :(得分:0)

您应该按照异常消息中的建议检查Windows日志。连接字符串位于Web应用程序的web.config文件中。