ASP.NET Tutorial/Configuration/ConfigurationSectionGroup

Материал из .Net Framework эксперт
Версия от 11:57, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Deal with Configuration Section Group

<%@ page language="C#" %>
<script runat="server">
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));
        }
    }
}
    
</script>
<html>
<head id="Head1" runat="server">
    <title>Untitled Page</title>
</head>
<body>
    <form id="Form1" runat="server">
        <asp:listbox id="LB_Sections" runat="server" width="300px" height="300px">
        </asp:listbox>
    </form>
</body>
</html>