sqlprofileprovider

Do most people use .NET's SqlMembershipProvider, SqlRoleProvider, and SqlProfileProvider?

Do most people use .NET's SqlMembershipProvider, SqlRoleProvider, and SqlProfileProvider when developing a site with membership capabilities? Or do many people make their own providers, or even their own membership systems entirely? What are the limitations of the SQL providers that would make you roll your own? Is it easy to extend t...

Caching the profiles from SqlProfileProvider -- ProfileManager.GetAllProfiles result

I'm using the SqlProfileProvider on one of my websites and in one page I need to fetch the whole list of profiles (it is an intranet). The method that I use is the ProfileManager.GetAllProfiles(). The problem is that its performance is really bad and it slows down the website considerably. Therefore, I was thinking of caching the resu...

Improve performance on ProfileManager.GetAllProfiles when using SqlProfileProvider

I am using the SqlProfileProvider to store my user profiles in an asp.net web application. What I am looking for is a way to fetch all user profiles (I would prefer a search API, but there is not one available) with some reasonable performance. Using the ProfileManager.GetAllProfiles kills the performance of my application. I was thi...

Any downsides to using the ProfileProvider in ASP.NET

Hey everyone, Are there any downsides like performance or gotchas in terms of functionality to using the built in ProfileProvider with .NET? I will be storing office information, extra security questions, etc. Nothing to outrageous so it could be a good fit. ...