Advertisement
jctt

Untitled

Mar 28th, 2013
404
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.78 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3.  For more information on how to configure your ASP.NET application, please visit
  4.  http://go.microsoft.com/fwlink/?LinkId=169433
  5.  -->
  6. <configuration>
  7.  
  8.   <connectionStrings>
  9.     <add name="MySQLConn" connectionString="Server=localhost;Database=dbname;Uid=dbuser;Pwd=dbpass;" />
  10.   </connectionStrings>
  11.  
  12.   <system.web>
  13.     <membership defaultProvider="MySqlMembershipProvider">
  14.       <providers>
  15.         <clear />
  16.         <add name="MySqlMembershipProvider" type="MySql.Web.Security.MySQLMembershipProvider,MySql.Web,Version=6.6.5.0, Culture=neutral,PublicKeyToken=c5687fc88969c44d" autogenerateschema="true" connectionStringName="MySQLConn" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" passwordFormat="Hashed" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" passwordStrengthRegularExpression="" applicationName="/" />
  17.       </providers>
  18.     </membership>
  19.     <profile defaultProvider="MySqlProfileProvider">
  20.       <providers>
  21.         <clear />
  22.         <add name="MySqlProfileProvider" type="MySql.Web.Profile.MySQLProfileProvider,MySql.Web,Version=6.6.5.0,Culture=neutral,PublicKeyToken=c5687fc88969c44d" connectionStringName="MySQLConn" applicationName="/" />
  23.       </providers>
  24.     </profile>
  25.     <roleManager enabled="true" defaultProvider="MySqlRoleProvider">
  26.       <providers>
  27.         <clear />
  28.         <add name="MySqlRoleProvider" type="MySql.Web.Security.MySQLRoleProvider,MySql.Web,Version=6.6.5.0,Culture=neutral,PublicKeyToken=c5687fc88969c44d" connectionStringName="MySQLConn" applicationName="/" />
  29.       </providers>
  30.     </roleManager>
  31.  
  32.   </system.web>
  33.  
  34.  
  35. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement