我有一个ASP.NET服务器应用程序,它位于web.config中:
<appSettings file="config\another.config">
因此每个开发人员的设置不同,并分别存储在svn中。有没有办法以编程方式获取文件名(我不想解析web.config原始文本)?
答案 0 :(得分:1)
这应该可以解决问题:
Configuration config = WebConfigurationManager.OpenWebConfiguration("~");
AppSettingsSection appSettingSection = (AppSettingsSection)config.GetSection("appSettings");
String externalFilename = appSettingSection.File;
您需要为此引用System.Web.Configuration。