I am reading through the book ASP.NET MVC 1.0 Website Programming and the following is contained within the web.config file in the example project:
<authentication mode="Forms">
<forms defaultUrl="/" loginUrl="/user/login" />
</authentication>
<membership>
<providers>
<clear />
<add name="AspNetSqlMembershipProvider"
type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
connectionStringName="TheBeerHouseConnectionString"
enablePasswordRetrieval="false"
enablePasswordReset="true"
requiresQuestionAndAnswer="false"
applicationName="TheBeerHouse"
requiresUniqueEmail="true"
passwordFormat="Hashed"
maxInvalidPasswordAttempts="5"
minRequiredPasswordLength="5"
passwordAttemptWindow="10"
passwordStrengthRegularExpression=""
/>
</providers>
</membership>
I understand everything minus the Culture
and PublicKeyToken
decleratinos contained within Membership / Providers / Add / Type
Could anyone help me to understand these two aspects?