我在asp.net开发了一个网站并上传到服务器上。但是我无法连接到我的SQL Server数据库(在localhost
上,我能够运行但不能在服务器上运行)
我正在使用以下代码。
con = new SqlConnection("server=**********,****\\sqlexpress;Database=******;User ID=******;Password=*********");
con.Open();
但我无法打开连接。
我收到与web.config
相关的错误:
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
注意:通过修改应用程序的defaultRedirect
配置标记的<customErrors>
属性以指向自定义错误页面URL,可以将自动查看的当前错误页面替换为自定义错误页面。 p>
<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>
所以,请帮助我如何解决它