在asp.net中读取并加载外部config xml文件

时间:2015-02-10 09:27:56

标签: c# asp.net

我有一个asp.net网站。我需要使用外部配置文件abc.xml来配置而不是web.config文件。我该如何实现此功能。

3 个答案:

答案 0 :(得分:0)

在您的<configuration>标记内的web.config中,尝试使用<appSettings file="path_to_your_file\abc.config" />

答案 1 :(得分:0)

您可以直接在代码隐藏文件

中使用它
System.Web.Configuration.WebConfigurationManager.AppSettings.Get("Root");

Have the look on this link

答案 2 :(得分:0)

在web.config中保存配置文件的路径。从路径访问文件并从中获取所需内容。