我正在尝试访问system.webServer/defaultDocument
我的 web.config 文件,但似乎无法找到方法。我尝试了各种有关编辑 Web 配置文件的文章,但我似乎没有相同的选项来访问其中的项目,system.webServer
就像我在更改 connectionString 时那样。
我可以使用以下方法加载 system.webServer 部分:
ConfigurationSection WebServerSection = (ConfigurationSection)WebConfigurationManager.GetSection("system.webServer");
但从那时起看不到任何可用的东西。我注意到的一件事是该system.webServer
部分的类型是System.Configuration.IgnoreSection
. 这会以某种方式阻止我编辑它吗?