我已经用 C# 在 ASP.NET 中开发了我的第一个网站。这是一个使用 Microsoft SQL Server 2008 作为数据库的小型网站,我已将其部署在免费托管网站www.somee.com上。它的数据库在我的计算机上运行良好,但是当我尝试访问服务器上的数据库时,出现以下错误:
[ 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: 26 - Error Locating Server/Instance Specified)].
我在 web.config 中更新了数据库的连接字符串,并使用 getConString() 方法访问连接字符串,如下所示:
public string getConString()
{
return System.Configuration.ConfigurationManager.ConnectionStrings["ConString"].ConnectionString;
}
我能做些什么来解决这个问题。
网站网址是:www.easyways.somee.com