Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
7answers
2k views

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 ...
1
vote
1answer
217 views

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 ...
0
votes
2answers
45 views

read user profile by username

I need to retrieve from the profile of some user (which is not the one is currently logged-in) by using the username for example <properties> <add name="StartedOn"/> <add ...
0
votes
0answers
280 views

What do the ASP.NET Universal Providers enable that the default sql providers don't?

Inside the readme file of the ASP.NET Universal providers NuGet package is this quote The SqlMembershipProvider, SqlRoleProvider, SqlProfileProvider classes that shipped in ASP.NET through version ...
0
votes
1answer
365 views

SqlProfileProvider - can you use Profile.GetProfile() in a project?

I am attempting to use the SqlProfileProvider in an application and can't seem to use it the way I want to. I would like to be able to simply call up a profile like this: Profile p = ...
0
votes
2answers
392 views

alternative to profileprovider in asp.net mvc

i'm developing an ASP.NET MVC site that actually use a custom profileProvider to retrieve info (like last page visited, max number of record to view in a grid, notification via mail etc) related to a ...
0
votes
1answer
68 views

is it posible to use same SqlProfileProvider for two web project?

I have an asp.net web project which uses a SqlProfileProvider for membership structure,i am calling that project A . Can i use that membership from another asp.net project, project B ? I've tried ...
0
votes
1answer
90 views

Any downsides to using the ProfileProvider in ASP.NET

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. ...
0
votes
1answer
143 views

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(). ...