Yes I already followed all these tutorials of Jon Galloway, and when I'm making the Create() method in my UserProfile Class for an anonymous profile, the result will be null ... . So the problem is the same, I think there is a reason why I don't have the ProfileCommon() Class ...
Maybe there is something wrong here :
<membership defaultProvider="AspNetSqlMembershipProvider">
<providers>
<remove name="AspNetSqlMembershipProvider"/>
<add connectionStringName="SqlProviderConnection" name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
</providers>
</membership>
<roleManager enabled="true" defaultProvider="AspNetSqlRoleProvider">
<providers>
<remove name="AspNetSqlRoleProvider"/>
<add connectionStringName="SqlProviderConnection" applicationName="/" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
</providers>
</roleManager>
<profile enabled="true" automaticSaveEnabled="false" defaultProvider="AspNetSqlProfileProvider" inherits="UserProfile">
<providers>
<remove name="AspNetSqlProfileProvider"/>
<add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="SqlProviderConnection"/>
</providers>
</profile>
<anonymousIdentification enabled="true" cookieName=".ASPANON" cookieTimeout="43200" cookiePath="/" cookieRequireSSL="false" cookieSlidingExpiration="true" cookieProtection="All" cookieless="UseCookies" />
Did I forgot something ?
Thanks in advance 