<?xml version="1.0"?>

<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
  <connectionStrings>
    <!--
    This connection is inherited from the ASP.NET Quickstart Web.config file
    Uncomment this section to edit the sample locally

    <add name="ASPNETDB" connectionString="Server=(local)\SQLExpress;Integrated Security=SSPI;Database=aspnetdb"/>

    -->
  </connectionStrings>
  <system.web>
    <authentication mode="Forms"/>
    <membership defaultProvider="QuickStartMembershipSqlProvider" userIsOnlineTimeWindow="15">
      <providers>
        <add
          name="QuickStartMembershipSqlProvider"
          type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" 
          connectionStringName="ASPNETDB" 
          enablePasswordRetrieval="false" 
          enablePasswordReset="true" 
          requiresQuestionAndAnswer="false" 
          applicationName="Themes" 
          requiresUniqueEmail="false" 
          passwordFormat="Hashed"/>
      </providers>
    </membership>
    <profile enabled="true" defaultProvider="QuickStartProfileSqlProvider">
      <providers>
        <add name="QuickStartProfileSqlProvider" type="System.Web.Profile.SqlProfileProvider, System.Web, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="ASPNETDB" applicationName="TipsTricks"/>
      </providers>
      <properties>
        <add name="FavoriteColor" type="String"/>
      </properties>
    </profile>
  </system.web>
</configuration>
