Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
6k views

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 ...
3
votes
1answer
864 views

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

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?
2
votes
4answers
453 views

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 ...
1
vote
2answers
133 views

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 ...
1
vote
0answers
113 views

What is the ASP.NET security client services profile provider data type?

This seems to be a simple question, but I cannot find the answer after much searching. I have an application that uses the ASP.NET security system. The membership uses a ...
1
vote
1answer
647 views

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 ...
1
vote
3answers
418 views

Role based Profile data in asp.net ProfileProvider

I have defined a couple of different roles in my asp.net website : Administrators, DefaultUsers. Currently i use the built-in profile provider to store some information about the user (first name, ...
1
vote
2answers
1k views

How to serialize System.Configuration.SettingsProperty

I need to serialize the System.Configuration.SettingsProperty and System.Configuration.SettingsPropertyValue class object through WCF.
0
votes
0answers
37 views

Access membership properties from remote server/app

Extending the membership properties with ProfileProvider, seems to serialize all the extended properties as BLOB(?) in the aspnet_Profile table. With a program on a remote server, I would like to ...
0
votes
0answers
73 views

Custom profile provider for multiple user types

I have recently started writing a custom profile provider which needs to handle different types of users, the reason I am writing a custom profile provider is because our database table structure is ...
0
votes
1answer
108 views

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

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

custom Profile Provider using CMS API

I have created a custom Profile Provider that is integrated with the API of a CMS. It works fine when pulling data for an authenticated user (Profile.FirstName), but errors when creating a new user's ...
0
votes
2answers
895 views

using custom Profile provider in ASP.net MVC?

im currently trying to implement a profile provider for my site a few days now and having a hard time working on it, im a php programer and i just shift to asp.net recently Im using Linq to sql and ...
0
votes
1answer
489 views

Profile Providers and Windows Authentication

All our inhouse projects use Active Directory authentication and impersonation as this is the accepted security policy for the company. I currently have a scenario where I need to store user profile ...
0
votes
3answers
362 views

Should I store images with my profiles (sql profile provider)?

I'm developing an intranet webapp in asp.net that has a requirement for storing user profile images. @edit: The webapp should be running in two different web servers at the same time. My question ...
0
votes
1answer
704 views

How to serialize SettingsContext and SettingsPropertyCollection

I need to serialize the System.Configuration.SettingsContext and System.Configuration.SettingsPropertyCollection types as i am implementing my own profile provider. Any suggestions on how to do it in ...