Questions tagged [profile-provider]

31 questions
63
votes
4 answers

Implementing Profile Provider in ASP.NET MVC

For the life of me, I cannot get the SqlProfileProvider to work in an MVC project that I'm working on. The first interesting thing that I realized is that Visual Studio does not automatically generate the ProfileCommon proxy class for you. That's…
senfo
  • 28,488
  • 15
  • 76
  • 106
6
votes
2 answers

Implementing Custom Profile Provider in ASP.NET MVC

I tried a lot on implementing a custom profile provider in ASP.NET MVC. I've read lots and lots of tutorials, but I can't find where my problem is. It's pretty similar to Implementing Profile Provider in ASP.NET MVC. But I'd like to create my own…
Flesym
  • 573
  • 2
  • 9
  • 18
6
votes
1 answer

Active Directory Custom User Profiles/Attributes?

I am currently using the ActiveDirectoryMembershipProvider just for authentication on an internal business app built in asp.net. This works like a charm. I am now looking to add some functionality to handle custom profile information for a user,…
Mike M
  • 931
  • 1
  • 11
  • 17
4
votes
2 answers

Custom Membership Provider or Profile Provider in mvc asp.net

I'm venturing into the world of asp.net mvc. I have not yet understood whether it makes sense to use a custom Membership Provider or use the Profile provider for the user management?
Safari
  • 11,437
  • 24
  • 91
  • 191
2
votes
2 answers

How to use a profile provider in Sitecore?

I am looking to create a product catalogue site using Sitecore that will allow users to save products into custom lists they can manage when they use the website. These lists could potentially contain hundreds of items each so using the standard…
Bevan
  • 281
  • 6
  • 17
2
votes
1 answer

How do I instantiate the Profile from an ashx file?

I recently switched some AJAX queries to use ashx files instead of aspx, having discovered that Response.End is no longer in vogue. In the case I'm looking at now, the submission of a purchase order is handled by the ashx. The user clicks the…
2
votes
1 answer

Create Custom Profile Provider using Entity Framework with my own database

Up to now, I can create Custom Membership Provider and Custom Role Provider, but I have problem with Custom Profile Provider. After looking at some demo, I've found out that they use web.config to define the schema for the Profile. For example, in…
Triet Doan
  • 11,455
  • 8
  • 36
  • 69
2
votes
1 answer

asp.net Profile Provider Search on specific property

I am using the SqlProfileProvider class in one of my projects and I would like to be able to search for profiles on an arbitrary profile property (e.g. Birthday). The only search method that I have seen is the ProfileManager.FindByUserName. Has…
Pablo
  • 2,054
  • 8
  • 30
  • 56
2
votes
3 answers

asp.net profile provider

I know there are already some questions on this topic on the site... I am just trying to understand if it's safe to use ASP.NET Profile Provider with a website with huge traffic? The way I see it, it's laid out inefficiently. You store property…
progtick
2
votes
1 answer

Asp.net Membership Profile FirstName and LastName (Not declared. It may be inaccessible due to its protection level )

When i created a profile and when i add items it always says not declared in the code behind!! I tried to change the Framework of the project from Framework 4.0 to Framework 3.5 and it still didn't work. It says FirstNamep , LastNamep are not…
1
vote
1 answer

Value of custom field in Custom Membership Provider

I have implemented Custom Membership Provider by inheriting .NETs Membership Provider. For my front end using CreateUserWizard Control, which is wired with mine Membership Provider. I have edited template of CreateUserWizard control, so now it looks…
1
vote
1 answer

Using the ASP .NET PROFILE Provider in a WPF application

I've been able to find lots of stuff about using the ASP .NET Membership provider in WPF. I've even got the ASP .NET Role provider working in my WPF application. These are very easy to use in WPF. What I can't find any information about is how to…
Tony Vitabile
  • 8,298
  • 15
  • 67
  • 123
1
vote
0 answers

Create and use new ProfileProvider Property in Lightswitch

How can I create and get access to new Properties of ProfileProvider using Lightswitch? I have tried this: Modified the next section in Web.config/configuration/system.web/
1
vote
2 answers

Is it possible to persist two profiles with the Profile Provider Model?

I have a website that needs to store two sets of user data into separate data stores. The first set of data is used by the SiteCore CMS and holds information about the user. The second set of data is used by a personalisation application that stores…
NickGPS
  • 1,499
  • 14
  • 22
1
vote
1 answer

Binding formview with profile in asp.net

I want to display and update user profile using FormView control. But I dont know exactly how to do this. I am using custom providers for Roles, Membership and Profile. Everything is working fine. Can anybody provide solution? Thanks for sharing…
IrfanRaza
  • 3,030
  • 17
  • 64
  • 89
1
2 3