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);
    
    ConfigurationSection section = config.Sections["appSettings"];
    this.textBox1.Text = section.GetRawXml().OuterXml;
}
    



    Untitled Page