Hi.
I am attempting to design a custom profile class that allows me to access the aspnet tables in addition to my custom tables (all in the same DB).
I have been following two online examples that describe how to wire up a custom profile class. In this example, I am asked to inherit from ProfileProvider
How To Implement A Custom Profile Provider
And, in this one, I am asked to inherit from ProfileBase:
Writing a custom ASP.NET Profile Class
What is the difference between these two examples and which way is better? Should I be inheriting from ProfileProvider or ProfileBase? What is the difference?
public class UserProfile : ProfileProvider
public class UserProfile : ProfileBase
Thanks.