Configuration ASP.Net Tutorial

<%@ Page Language="C#" %>
<%@ Import Namespace="System.Web.Configuration" %>
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    void Page_Load()
    {
        Configuration config = WebConfigurationManager.OpenMachineConfiguration();        
        AuthenticationSection section = (AuthenticationSection)config.GetSection ("system.web/authentication");
        lblMode.Text = section.Mode.ToString();
    }



    Show Config Machine


    
    

    Authentication Mode Default Value:
            id="lblMode"
        Runat="server" />