Hi,
yeah - i omitted all the other methods - for the login control you only need
to implement ValidateUser.
it is not formsauth vs membership - membership is just an abstraction layer
to check credentials/manage user. The normal formsauth infrastructure is
still in use.
the authentication success/failure events are something i used in my code,
you don't have to do that. just remove those lines.
---------------------------------------
Dominick Baier - DevelopMentor
http://www.leastprivilege.com
> Strange. I'm sure it was working at one point. Must have just been the
> setup I had that got it through.
>
> Thanks for the provider though, it should so be included in the
> framework for basic setups like mine.
> However, I am getting errors about 'WebConfigMembershipProvider' does
> not implement inherited abstract member
> 'System.Web.Security.MembershipProvider.GetNumberO fUsersOnline()'
> etc.,
> Were these MembershipProvider methods not abstract in the Beta or
> something? Why are there no stubs now?
> Surely I don't need to override them all if I'm not going to use the
> functionality?
> I haven't quite got my head around forms authentication vs membership
> and all the providers yet, and how much you need to change.
> Like where does the AuthenticationSuccessEvent get handled?