<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <configSections>
    <section name="appSettings"
             type="System.Configuration.AppSettingsSection,.../>
    <section name="connectionStrings"
             type="System.Configuration.ConnectionStringsSection,.../>
    <section name="mscorlib"
             type="System.Configuration.IgnoreSection,.../>

    <sectionGroup name="system.net"
                  type="System.Net.Configuration.NetSectionGroup,...>
      <section name="authenticationModules"
         type="System.Net.Configuration.AuthenticationModulesSection,.../>
      <section name="connectionManagement"
          type="System.Net.Configuration.ConnectionManagementSection,.../>
      <section name="defaultProxy"
          type="System.Net.Configuration.DefaultProxySection,.../>
      <sectionGroup name="mailSettings"
          type="System.Net.Configuration.MailSettingsSectionGroup,...>
        <section name="smtp"
                 type="System.Net.Configuration.SmtpSection,.../>
      </sectionGroup>
      <section name="requestCaching"
               type="System.Net.Configuration.RequestCachingSection,.../>
      <section name="settings"
               type="System.Net.Configuration.SettingsSection,.../>
      <section name="webRequestModules"
             type="System.Net.Configuration.WebRequestModulesSection,.../>
    </sectionGroup>

    <sectionGroup name="system.web"
             type="System.Web.Configuration.SystemWebSectionGroup,...>
      <section name="compilation"
               type="System.Web.Configuration.CompilationSection,.../>
      <section name="customErrors"
               type="System.Web.Configuration.CustomErrorsSection,.../>
      <sectionGroup name="caching"
          type="System.Web.Configuration.SystemWebCachingSectionGroup,...>
        <section name="cache"
                 type="System.Web.Configuration.CacheSection,.../>
        <section name="outputCache"
                 type="System.Web.Configuration.OutputCacheSection,.../>
      </sectionGroup>
    </sectionGroup>
  </configSections>

  <runtime />

  <connectionStrings>
    <add name="LocalSqlServer"
      connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;
                        AttachDBFilename=|DataDirectory|aspnetdb.mdf;
                        User Instance=true"
      providerName="System.Data.SqlClient" />
  </connectionStrings>

  <system.web>
    <processModel autoConfig="true" />
    <httpHandlers />
    <membership>
      <providers>
        <add name="AspNetSqlMembershipProvider"
             type="System.Web.Security.SqlMembershipProvider,.../>
      </providers>
    </membership>
    <profile>
      <providers>
        <add name="AspNetSqlProfileProvider"
             connectionStringName="LocalSqlServer"
             applicationName="/"
             type="System.Web.Profile.SqlProfileProvider,.../>
      </providers>
    </profile>
    <roleManager>
      <providers>
        <add name="AspNetSqlRoleProvider"
             connectionStringName="LocalSqlServer"
             applicationName="/"
             type="System.Web.Security.SqlRoleProvider,.../>
      </providers>
    </roleManager>
  </system.web>
</configuration>
