C# を使用して ASP.NET で最初の Web サイトを開発しました。これは、データベースに Microsoft SQL Server 2008 を使用する小さな Web サイトで、無料のホスティング サイト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;
}
この問題を解決するにはどうすればよいですか。
ウェブサイトの URL は次のとおりです: www.easyways.somee.com