gpt4 book ai didi

c# - 使用多个 Web Config C#

转载 作者:行者123 更新时间:2023-11-30 17:22:21 25 4
gpt4 key购买 nike

我有 2 个项目,每个项目都有一个 WebConfig 文件,我想从一个地方编辑这 2 个 webconfig 文件,我尝试这样做:

    string configPath = "/WebSite Name";
Configuration confUI = WebConfigurationManager.OpenWebConfiguration("~");
Configuration confProtocol = WebConfigurationManager.OpenWebConfiguration(configPath);
AppSettingsSection appSettingsUI = (AppSettingsSection)confUI.GetSection("appSettings");
AppSettingsSection appSettingsProtocol = (AppSettingsSection)confProtocol.GetSection("appSettings");

if (appSettingsUI != null & appSettingsProtocol != null)
{
appSettingsUI.Settings[key].Value = value;
appSettingsProtocol.Settings[key].Value = value;

confUI.Save();
confProtocol.Save();
}

我也试试

    Configuration confProtocol = WebConfigurationManager.OpenWebConfiguration(configPath,"webSiteName");

confProtocol设置为空的问题。

如何从UI Project设置Protocol Project的WebConfig路径?

最佳答案

嗯。我想检查“~”路径和“configPath”将是一个很好的起点。

关于c# - 使用多个 Web Config C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2757831/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com