没有安装SQL Express时如何连接MDF数据文件
1,修改连接串
<add name="NorthwindConnectionString" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Northwind.mdf;Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient"/>
改为
<add name="NorthwindConnectionString" connectionString="Data Source=.\;AttachDbFilename=|DataDirectory|\Northwind.mdf;Integrated Security=True;User Instance=False" providerName="System.Data.SqlClient" />
如果此时能够正确连接数据库,那恭喜你了!
相关文章:Vs2010在没有安装SQL Server 2005/2008 Express时如何连接MDF数据文件?
2, 修改IIS配置
实际操作当中,当修改完连接串后,重新找开程序,出现如下错误
用户 iis apppool 登录失败
按照 这里 的指示设置,问题解决。
签名:删除冗余的代码最开心,找不到删除的代码最痛苦!