You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
2.2 KiB
34 lines
2.2 KiB
<configuration>
|
|
<system.web>
|
|
<profile defaultProvider="DefaultProfileProvider" >
|
|
<providers>
|
|
<add name="DefaultProfileProvider" type="System.Web.Providers.DefaultProfileProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" connectionStringName="DefaultConnection" applicationName="/"/>
|
|
</providers>
|
|
</profile>
|
|
<membership defaultProvider="DefaultMembershipProvider">
|
|
<providers>
|
|
<add name="DefaultMembershipProvider" type="System.Web.Providers.DefaultMembershipProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" connectionStringName="DefaultConnection"
|
|
enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false"
|
|
maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10"
|
|
applicationName="/" />
|
|
</providers>
|
|
</membership>
|
|
<roleManager defaultProvider="DefaultRoleProvider">
|
|
<providers>
|
|
<add name="DefaultRoleProvider" type="System.Web.Providers.DefaultRoleProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" connectionStringName="DefaultConnection" applicationName="/" />
|
|
</providers>
|
|
</roleManager>
|
|
<!--
|
|
If you are deploying to a cloud environment that has multiple web server instances,
|
|
you should change session state mode from "InProc" to "Custom". In addition,
|
|
change the connection string named "DefaultConnection" to connect to an instance
|
|
of SQL Server (including SQL Azure and SQL Compact) instead of to SQL Server Express.
|
|
-->
|
|
<sessionState mode="InProc" customProvider="DefaultSessionProvider">
|
|
<providers>
|
|
<add name="DefaultSessionProvider" type="System.Web.Providers.DefaultSessionStateProvider, System.Web.Providers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" connectionStringName="DefaultConnection"/>
|
|
</providers>
|
|
</sessionState>
|
|
</system.web>
|
|
</configuration>
|