Configuration ASP.Net Tutorial

<%@ page language="C#" %>

void Page_Load(object sender, System.EventArgs e)
{
    string appPath = this.Request.ApplicationPath;    
    Configuration config = Configuration.GetConfigurationForUrl(appPath);
    
    for(int i = 0; i < config.SectionGroups.Count; i++) {
        ConfigurationSectionGroup group = config.SectionGroups[i];
        this.LB_Sections.Items.Add(group.Name);
        
        for (int j = 0; j < group.Sections.Count; j++) {
            ConfigurationSection section = group.Sections[j];
            this.LB_Sections.Items.Add(string.Format("...{0}", section.Name));
        }
    }
}
    



    Untitled Page