我使用以下代码在运行时更改 web.config
Configuration conf = WebConfigurationManager.OpenWebConfiguration("~/");
conf.ConnectionStrings.ConnectionStrings["ApplicationServices"].ConnectionString = "Test";
conf.Save();
但我收到一个错误 - “无法映射路径'/'。” 我在互联网上搜索并研究了所有解决方案,例如 1. 将路径更改为“/” 2. 将路径更改为“~/”
但发生了同样的问题。我想说的一点是我的应用程序不是托管在 IIS 上,而是通过使用 asp.net 开发服务器的视觉工作室运行