我有一个asp.net网站。我需要使用外部配置文件abc.xml来配置而不是web.config文件。我该如何实现此功能。
答案 0 :(得分:0)
在您的<configuration>
标记内的web.config中,尝试使用<appSettings file="path_to_your_file\abc.config" />
答案 1 :(得分:0)
您可以直接在代码隐藏文件
中使用它System.Web.Configuration.WebConfigurationManager.AppSettings.Get("Root");
答案 2 :(得分:0)
在web.config中保存配置文件的路径。从路径访问文件并从中获取所需内容。