我已经设置了一个小型SQL Server数据库供用户登录并创建帐户。但是连接字符串存在问题。每当我在web.config文件中使用下面的连接字符串时,我都会收到服务器错误页面,无法查看该网站。但是当我取出这个连接字符串时,我能够查看该网站,尽管数据库不起作用。任何想法都将不胜感激。
<configuration>
<appSettings/>
<connectionStrings>
<addname="ConnectionString" connectionString="Server=.\SQLEXPRESS;Database=medicale_Members;User ID=user_admin;Password=medicalmembers;"/>
<connectionStrings/>
<system.web>
答案 0 :(得分:1)
不确定您的问题是否是拼写错误,但您需要确保您的连接字符串元素如下:
<add name
而不是
<addname
确保使用
关闭元素 </connectionStrings>
答案 1 :(得分:0)
将其更改为:
</connectionStrings>
另外一个人提到了。将添加更改为:
<add name ... />